From 3f32649dd84795a981a7a6e7c38cd566722413b9 Mon Sep 17 00:00:00 2001 From: caminsha Date: Tue, 25 Feb 2020 22:46:04 +0100 Subject: Fixed a small math error Before: 2 -1 = 0 After: 2 - 1 = 1 --- processing.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'processing.html.markdown') 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 -- cgit v1.2.3