From 296aaed97c95151bd3241c2bd8753352f3d56569 Mon Sep 17 00:00:00 2001 From: s-ol Date: Thu, 20 Oct 2022 16:50:24 +0200 Subject: lib: fix typos and misnomers --- alv-lib/love.moon | 2 +- alv-lib/math-simple.moon | 6 +++--- alv-lib/math.moon | 6 +++--- alv-lib/time.moon | 2 +- 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 -- cgit v1.2.3