summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorcaminsha <c.96marco@hotmail.com>2020-02-27 23:38:03 +0100
committercaminsha <c.96marco@hotmail.com>2020-02-27 23:38:03 +0100
commitd7de2446b770382689495406a4e725810a052e2f (patch)
tree6e03151b40f88cf9619e0688644f6be3b05440dd
parent5d1c72515cbffc2e744c2ca2d500f75a3e74f1c3 (diff)
removed an unnecesarry white space
-rw-r--r--processing.html.markdown2
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
}