aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authors-ol <s+removethis@s-ol.nu>2022-10-20 14:50:24 +0000
committers-ol <s+removethis@s-ol.nu>2025-03-02 14:24:49 +0000
commit296aaed97c95151bd3241c2bd8753352f3d56569 (patch)
tree7475e7cfeedef025fee3bfea40aa85d9466749b1
parentdocs: don't repeat aliased entries (diff)
downloadalive-296aaed97c95151bd3241c2bd8753352f3d56569.tar.gz
alive-296aaed97c95151bd3241c2bd8753352f3d56569.zip
lib: fix typos and misnomers
-rw-r--r--alv-lib/love.moon2
-rw-r--r--alv-lib/math-simple.moon6
-rw-r--r--alv-lib/math.moon6
-rw-r--r--alv-lib/time.moon2
4 files changed, 8 insertions, 8 deletions
diff --git a/alv-lib/love.moon b/alv-lib/love.moon
index 321205a..2fa7742 100644
--- a/alv-lib/love.moon
+++ b/alv-lib/love.moon
@@ -529,7 +529,7 @@ macro [->>][]:
'mouse-presses': mouse_presses
'mouse-releases': mouse_releases
'mouse-down?': mouse_down
- 'wheel-data': wheel_delta
+ 'wheel-delta': wheel_delta
'key-presses': key_presses
'key-releases': key_releases
'key-down?': key_down
diff --git a/alv-lib/math-simple.moon b/alv-lib/math-simple.moon
index b79f065..bf14768 100644
--- a/alv-lib/math-simple.moon
+++ b/alv-lib/math-simple.moon
@@ -197,15 +197,15 @@ For vectorized operators and matrix multiplication, use [math/][]."
pi: Constant.meta
value: math.pi
- meta: summary: 'The pi constant.'
+ meta: name: 'pi', summary: "The pi constant."
tau: Constant.meta
value: math.pi*2
- meta: summary: 'The tau constant.'
+ meta: name: 'tau', summary: "The tau constant."
huge: Constant.meta
value: math.huge
- meta: summary: 'Positive infinity constant.'
+ meta: name: 'huge', summary: "Positive infinity constant."
:sin, :cos, :tan
:asin, :acos, :atan, :atan2
diff --git a/alv-lib/math.moon b/alv-lib/math.moon
index 4baf4be..c52fd35 100644
--- a/alv-lib/math.moon
+++ b/alv-lib/math.moon
@@ -314,15 +314,15 @@ as it handles matrix-matrix and matrix-vector multiplication according to linear
pi: Constant.meta
value: math.pi
- meta: summary: 'The pi constant.'
+ meta: name: 'pi', summary: "The pi constant."
tau: Constant.meta
value: math.pi*2
- meta: summary: 'The tau constant.'
+ meta: name: 'tau', summary: "The tau constant."
huge: Constant.meta
value: math.huge
- meta: summary: 'Positive infinity constant.'
+ meta: name: 'huge', summary: "Positive infinity constant."
:sin, :cos, :tan
:asin, :acos, :atan, :atan2
diff --git a/alv-lib/time.moon b/alv-lib/time.moon
index d05eeca..beaeac0 100644
--- a/alv-lib/time.moon
+++ b/alv-lib/time.moon
@@ -416,6 +416,6 @@ RTNode
'bang-seq': bang_seq
:smooth
- :delay
+ 'delay!': delay
'*clock*': default_clock