Skip to content

Commit 5cbbae9

Browse files
nschonniColin Robertson
authored andcommitted
typo: futher -> further (MicrosoftDocs#509)
1 parent a88d228 commit 5cbbae9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/cpp/scope-visual-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ There are six kinds of scope:
2525

2626
- **Local scope** A name declared within a function or lambda, including the parameter names, have local scope. They are often referred to as "locals". They are only visible from their point of declaration to the end of the function or lambda body. Local scope is a kind of block scope, which is discussed later in this article.
2727

28-
- **Class scope** Names of class members have class scope, which extends throughout the class definition regardless of the point of declaration. Class member accessibility is futher controlled by the **public**, **private**, and **protected** keywords. Public or protected members can be accessed only by using the member-selection operators (**.** or **->**) or pointer-to-member operators (**.**<strong>\*</strong> or **->**<strong>\*</strong>).
28+
- **Class scope** Names of class members have class scope, which extends throughout the class definition regardless of the point of declaration. Class member accessibility is further controlled by the **public**, **private**, and **protected** keywords. Public or protected members can be accessed only by using the member-selection operators (**.** or **->**) or pointer-to-member operators (**.**<strong>\*</strong> or **->**<strong>\*</strong>).
2929

3030
- **Statement scope** Names declared in a **for**, **if**, **while**, or **switch** statement are visible until the end of the statement block.
3131

@@ -125,4 +125,4 @@ Global-scoped i has the value: 7
125125

126126
## See also
127127

128-
[Basic Concepts](../cpp/basic-concepts-cpp.md)
128+
[Basic Concepts](../cpp/basic-concepts-cpp.md)

0 commit comments

Comments
 (0)