Software /
code /
prosody
Changeset
10397:921e8b00778e
util.array: Fix typo in test
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 07 Nov 2019 00:20:54 +0100 |
parents | 10396:3278f2a31a0a |
children | 10398:fa50789d6ec7 |
files | spec/util_array_spec.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/spec/util_array_spec.lua Tue Nov 05 01:34:13 2019 +0100 +++ b/spec/util_array_spec.lua Thu Nov 07 00:20:54 2019 +0100 @@ -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);