about summary refs log tree commit diff stats
path: root/js/scripting-lang/tutorials/00_Introduction.md
diff options
context:
space:
mode:
Diffstat (limited to 'js/scripting-lang/tutorials/00_Introduction.md')
-rw-r--r--js/scripting-lang/tutorials/00_Introduction.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/scripting-lang/tutorials/00_Introduction.md b/js/scripting-lang/tutorials/00_Introduction.md
index 4b95fef..cfd2c80 100644
--- a/js/scripting-lang/tutorials/00_Introduction.md
+++ b/js/scripting-lang/tutorials/00_Introduction.md
@@ -85,7 +85,7 @@ result : increment (double 5);
 ..out result;  /* Output: 11 */
 ```
 
-**Key Point**: Parentheses are needed for negative numbers: `f (-5)` not `f -5`.
+**Key Point**: Unary minus works without parentheses: `f -5` applies `f` to `negate(5)`. Use spaces around binary operators for clarity: `5 - 3` for subtraction. See the [Juxtaposition tutorial](01_Juxtaposition_Function_Application.md#negative-numbers-and-spacing) for detailed information about operator spacing.
 
 ## Pattern Matching with `when`