summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash@users.noreply.github.com>2020-02-26 14:15:50 +0530
committerGitHub <noreply@github.com>2020-02-26 14:15:50 +0530
commit4c76a1dafe59924e4e35eb53f8468853be167105 (patch)
tree84ecf29941c4604c78492d4f19f03bae19bed8e1
parent8f3c99bb9e56087a922f0f3e296285fc808a7b03 (diff)
parent3f32649dd84795a981a7a6e7c38cd566722413b9 (diff)
Merge pull request #3868 from caminsha/en/procesing/fix_math_error
[processing/en] Fixed a small math error
-rw-r--r--processing.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/processing.html.markdown b/processing.html.markdown
index e437ee95..d99912e7 100644
--- a/processing.html.markdown
+++ b/processing.html.markdown
@@ -140,7 +140,7 @@ SomeRandomClass myObjectInstantiated = new SomeRandomClass();
// Arithmetic
1 + 1 // 2
-2 - 1 // 0
+2 - 1 // 1
2 * 3 // 6
3 / 2 // 1
3.0 / 2 // 1.5