Skip to content

Commit 68fbe2e

Browse files
author
Ron Petrusha
authored
Merge pull request dotnet#2092 from ricardomlourenco/patch-1
Update classes-and-objects.md
2 parents f6ff06c + a857268 commit 68fbe2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/csharp/tour-of-csharp/classes-and-objects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ Each member of a class has an associated accessibility, which controls the regio
6363
* `protected`
6464
- Access limited to this class or classes derived from this class
6565
* `internal`
66-
- Access limited to this program
66+
- Access limited to the current assembly (.exe, .dll, etc.)
6767
* `protected internal`
68-
- Access limited to this program or classes derived from this class
68+
- Access limited to the containing class or classes derived from the containing class
6969
* `private`
7070
- Access limited to this class
7171

0 commit comments

Comments
 (0)