diff options
author | caminsha <c.96marco@hotmail.com> | 2020-02-27 23:38:03 +0100 |
---|---|---|
committer | caminsha <c.96marco@hotmail.com> | 2020-02-27 23:38:03 +0100 |
commit | d7de2446b770382689495406a4e725810a052e2f (patch) | |
tree | 6e03151b40f88cf9619e0688644f6be3b05440dd /processing.html.markdown | |
parent | 5d1c72515cbffc2e744c2ca2d500f75a3e74f1c3 (diff) |
removed an unnecesarry white space
Diffstat (limited to 'processing.html.markdown')
-rw-r--r-- | processing.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/processing.html.markdown b/processing.html.markdown index d0952e96..d7b0d600 100644 --- a/processing.html.markdown +++ b/processing.html.markdown @@ -211,7 +211,7 @@ switch(value) { // Iterative statements // For Statements - Again, the same syntax as in Java -for(int i = 0; i < 5; i ++){ +for(int i = 0; i < 5; i++){ print(i); // prints from 0 to 4 } |