about summary refs log tree commit diff stats
path: root/lua
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2024-06-09 20:56:54 -0400
committerelioat <elioat@tilde.institute>2024-06-09 20:56:54 -0400
commitb978a4bb4add25f95dda7b25fffc0233cf780806 (patch)
tree32953debfee596d5302d5bae56f137587e15e253 /lua
parent3ff223f2a297a7300fede33dbe69da63f08e0c84 (diff)
downloadtour-b978a4bb4add25f95dda7b25fffc0233cf780806.tar.gz
*
Diffstat (limited to 'lua')
-rw-r--r--lua/chupacabra/chupacabra.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/chupacabra/chupacabra.lua b/lua/chupacabra/chupacabra.lua
index dc02307..b8b6995 100644
--- a/lua/chupacabra/chupacabra.lua
+++ b/lua/chupacabra/chupacabra.lua
@@ -65,7 +65,7 @@ function chupacabra.evaluate(tokens, context)
             local a = table.remove(stack)
             table.insert(stack, a == b)
         elseif token == "@=" then
-            -- checks if the values of 2 equally lenghted arrays are equal, and returns a bit mask of the differences
+            -- checks if the values of 2 equally lengthed arrays are equal, and returns a bit mask of the differences
             local b = table.remove(stack)
             local a = table.remove(stack)
             if #a ~= #b then