Skip to content

Commit 2803b76

Browse files
[create-pull-request] automated change (#629)
Co-authored-by: BillWagner <[email protected]>
1 parent 92ccbda commit 2803b76

File tree

5 files changed

+196
-142
lines changed

5 files changed

+196
-142
lines changed

standard/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
- [§9.4.4.29](variables.md#94429--expressions) ?? expressions
164164
- [§9.4.4.30](variables.md#94430--expressions) ?: expressions
165165
- [§9.4.4.31](variables.md#94431-anonymous-functions) Anonymous functions
166+
- [§9.4.4.32](variables.md#94432-rules-for-variables-in-local-functions) Rules for variables in local functions
166167
- [§9.5](variables.md#95-variable-references) Variable references
167168
- [§9.6](variables.md#96-atomicity-of-variable-references) Atomicity of variable references
168169
- [§10](conversions.md#10-conversions) Conversions
@@ -398,6 +399,7 @@
398399
- [§12.6.1](statements.md#1261-general) General
399400
- [§12.6.2](statements.md#1262-local-variable-declarations) Local variable declarations
400401
- [§12.6.3](statements.md#1263-local-constant-declarations) Local constant declarations
402+
- [§12.6.4](statements.md#1264-local-function-declarations) Local function declarations
401403
- [§12.7](statements.md#127-expression-statements) Expression statements
402404
- [§12.8](statements.md#128-selection-statements) Selection statements
403405
- [§12.8.1](statements.md#1281-general) General

standard/basic-concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ The ***declared accessibility*** of a member can be one of the following:
222222
- Protected, which is selected by including a `protected` modifier in the member declaration. The intuitive meaning of `protected` isaccess limited to the containing class or types derived from the containing class”.
223223
- Internal, which is selected by including an `internal` modifier in the member declaration. The intuitive meaning of `internal` isaccess limited to this assembly”.
224224
- Protected internal, which is selected by including both a `protected` and an `internal` modifier in the member declaration. The intuitive meaning of `protected internal` isaccessible within this assembly as well as types derived from the containing class”.
225-
- Private protected, which is selected by including both a `private` and a `protected` modifier in the member declaration. The intuitive meaning of `private protected` is "accessible within this assembly by the containing class and types derived from the containing class."
225+
- Private protected, which is selected by including both a `private` and a `protected` modifier in the member declaration. The intuitive meaning of `private protected` is accessible within this assembly by the containing class and types derived from the containing class.
226226
- Private, which is selected by including a `private` modifier in the member declaration. The intuitive meaning of `private` isaccess limited to the containing type”.
227227
228228
Depending on the context in which a member declaration takes place, only certain types of declared accessibility are permitted. Furthermore, when a member declaration does not include any access modifiers, the context in which the declaration takes place determines the default declared accessibility.

0 commit comments

Comments
 (0)