Commit c87c41c
authored
Fixed semicolon in TWO_PI.pde
The previous character is not a semicolon. It just looks like one. The ASCII code for a semicolon is 59. I checked the code for whatever is currently after the size(400,400) and I found 65307.
';'.charCodeAt(0)
I discovered this issue when pasting code from the example on the Processing website.1 parent c2d4af5 commit c87c41c
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| |||
0 commit comments