Skip to content

Commit 62ac46e

Browse files
Merge pull request #43 from LilithHafner/patch-1
Thank you. Fix use-before-definition in README
2 parents a0c0792 + 406c160 commit 62ac46e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ Integer overflow occurs when an integer type is increased beyond its maximum val
2828
```
2929
There are security implications for integer overflow in certain situations.
3030
```julia
31-
for i in 1:a
32-
secure(biohazard[i])
33-
end
34-
3531
a = Int16(456) * Int16(567)
3632
a == -3592
33+
3734
# the for loop does not execute
35+
for i in 1:a
36+
secure(biohazard[i])
37+
end
3838
```
3939

4040
## Highlights

0 commit comments

Comments
 (0)