diff options
author | Kim Alvefur <zash@zash.se> | 2019-11-07 00:20:54 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-11-07 00:20:54 +0100 |
commit | a9980f81fadf325ed8f609ae3787c061dba63f94 (patch) | |
tree | 24af2d74f7b65cd1f6a6e61292632a464c4d9ad6 /spec/util_array_spec.lua | |
parent | 58990598f283f24f99dd5899669acc310b5437b1 (diff) | |
download | prosody-a9980f81fadf325ed8f609ae3787c061dba63f94.tar.gz prosody-a9980f81fadf325ed8f609ae3787c061dba63f94.zip |
util.array: Fix typo in test
Diffstat (limited to 'spec/util_array_spec.lua')
-rw-r--r-- | spec/util_array_spec.lua | 2 |
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); |