diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2018-11-29 14:57:22 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2018-11-29 14:57:56 -0800 |
| commit | efd743591e555e63dce7dd351e1e80bb38848669 (patch) | |
| tree | ae1d5d2e19288049a2773610b93a8df3cd981264 /core/math.nom | |
| parent | 09e571ffa67935f0ed29526768863f5338f91769 (diff) | |
Renamed append/concat_append to add/concat_add for Code objects.
Diffstat (limited to 'core/math.nom')
| -rw-r--r-- | core/math.nom | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/math.nom b/core/math.nom index bef6bbb..2bc3e6f 100644 --- a/core/math.nom +++ b/core/math.nom @@ -79,7 +79,7 @@ externally [all of %items, all %items] all mean: %lua = (Lua "(") %lua::add [: for % in %items: add (% as lua expr)] joined with " and " - %lua::append ")" + %lua::add ")" return %lua [not all of %items, not all %items] all parse as (not (all of %items)) @@ -98,7 +98,7 @@ externally [any of %items, any %items] all mean: %lua = (Lua "(") %lua::add [: for % in %items: add (% as lua expr)] joined with " or " - %lua::append ")" + %lua::add ")" return %lua [none of %items, none %items] all parse as (not (any of %items)) @@ -119,7 +119,7 @@ externally [sum of %items, sum %items] all mean: %lua = (Lua "(") %lua::add [: for % in %items: add (% as lua expr)] joined with " + " - %lua::append ")" + %lua::add ")" return %lua externally [product of %items, product %items] all mean: @@ -137,7 +137,7 @@ externally [product of %items, product %items] all mean: %lua = (Lua "(") %lua::add [: for % in %items: add (% as lua expr)] joined with " * " - %lua::append ")" + %lua::add ")" return %lua externally [avg of %items, average of %items] all mean (..) |
