Merge pull request #2342 from ghost/patch-3

fix typo
This commit is contained in:
Julien Couvreur 2019-09-10 14:32:54 -07:00 committed by GitHub
commit 7bcdec6cea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -140,7 +140,7 @@ At a given location in the executable code of a function member, a variable is s
The formal specification underlying the above informal rules is described in [Initially assigned variables](variables.md#initially-assigned-variables), [Initially unassigned variables](variables.md#initially-unassigned-variables), and [Precise rules for determining definite assignment](variables.md#precise-rules-for-determining-definite-assignment).
The definite assignment states of instance variables of a *struct_type* variable are tracked individually as well as collectively. In additional to the rules above, the following rules apply to *struct_type* variables and their instance variables:
The definite assignment states of instance variables of a *struct_type* variable are tracked individually as well as collectively. In addition to the rules above, the following rules apply to *struct_type* variables and their instance variables:
* An instance variable is considered definitely assigned if its containing *struct_type* variable is considered definitely assigned.
* A *struct_type* variable is considered definitely assigned if each of its instance variables is considered definitely assigned.