File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ The variant value as declared by the `const` is determined as follows:
120120
1211211 . Let r = zero
1221222 . If the initializer does not contain a numeric literal
123- 1 . If there is no previous variant, return zero .
123+ 1 . If there is no previous variant, return 0 .
124124 2 . Let k = previous variant's value
125125 3 . r = k + 1
1261263 . Else
@@ -133,12 +133,12 @@ The variant value as declared by the `const` is determined as follows:
133133
1341341 . Let r = zero
1351352 . If the initializer does not contain a numeric literal
136- 1 . If there is no previous variant, return one .
136+ 1 . If there is no previous variant, return 1 .
137137 2 . Let k = previous variant's value
138138 3 . r = k * 2
1391393 . Else
140140 1 . r = the value of the numeric literal at the initializer.
141- 2 . If r is not one or a multiple of two
141+ 2 . If r is not one or a power of two
142142 1 . Throw a verify error
1431434 . If r is already used by another variant's value
144144 1 . Throw a verify error
You can’t perform that action at this time.
0 commit comments