aboutsummaryrefslogtreecommitdiff
path: root/core/math.nom
diff options
context:
space:
mode:
Diffstat (limited to 'core/math.nom')
-rw-r--r--core/math.nom8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/math.nom b/core/math.nom
index aa1d200..38fb984 100644
--- a/core/math.nom
+++ b/core/math.nom
@@ -70,7 +70,7 @@ externally [all of %items, all %items] all mean:
return (no)
return (yes)
-[all of %items, all %items] all compile to:
+#[all of %items, all %items] all compile to:
unless (%items.type is "List"):
return \(all of %items)
@@ -89,7 +89,7 @@ externally [any of %items, any %items] all mean:
return (yes)
return (no)
-[any of %items, any %items] all compile to:
+#[any of %items, any %items] all compile to:
unless (%items.type is "List"):
return \(any of %items)
@@ -110,7 +110,7 @@ externally [sum of %items, sum %items] all mean:
%total += %
return %total
-[sum of %items, sum %items] all compile to:
+#[sum of %items, sum %items] all compile to:
unless (%items.type is "List"):
return \(sum of %items)
@@ -128,7 +128,7 @@ externally [product of %items, product %items] all mean:
%prod *= %
return %prod
-[product of %items, product %items] all compile to:
+#[product of %items, product %items] all compile to:
unless (%items.type is "List"):
return \(product of %items)