aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/util_array_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/util_array_spec.lua b/spec/util_array_spec.lua
index acd2e882..04d0cc28 100644
--- a/spec/util_array_spec.lua
+++ b/spec/util_array_spec.lua
@@ -1,7 +1,7 @@
local array = require "util.array";
describe("util.array", function ()
describe("creation", function ()
- describe("from tablle", function ()
+ describe("from table", function ()
it("works", function ()
local a = array({"a", "b", "c"});
assert.same({"a", "b", "c"}, a);