We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Update chapter-07.md
1 parent c984f0d commit ad94cfdCopy full SHA for ad94cfd
1 file changed
reference/docs-conceptual/lang-spec/chapter-07.md
@@ -988,10 +988,10 @@ $i = 2147483647 # $i holds a value of type int
988
989
[int]$k = 0 # $k is constrained to int
990
$k = [int]::MinValue # $k is set to -2147483648
991
-$--k # -2147483649 is too small to fit, imp-def behavior
+--$k # -2147483649 is too small to fit, imp-def behavior
992
993
$x = $null # target is unconstrained, $null goes to [int]0
994
-$--x # value treated as int, 0 becomes -1
+--$x # value treated as int, 0 becomes -1
995
```
996
997
### 7.2.7 The unary -join operator
0 commit comments