# HG changeset patch # User Kim Alvefur # Date 1573082454 -3600 # Node ID 921e8b00778e10dd7fab8bda89323af5be2da091 # Parent 3278f2a31a0aafea3c802236c29b43316c91944a util.array: Fix typo in test diff -r 3278f2a31a0a -r 921e8b00778e spec/util_array_spec.lua --- 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);