util.format: Fix typo in comment [codespell]
authorKim Alvefur <zash@zash.se>
Fri, 04 Feb 2022 16:40:38 +0100
changeset 12265 f7946c8e502f
parent 12264 e729c994e7c7
child 12266 50525021c2c7
util.format: Fix typo in comment [codespell]
util/format.lua
--- a/util/format.lua	Fri Feb 04 16:40:23 2022 +0100
+++ b/util/format.lua	Fri Feb 04 16:40:38 2022 +0100
@@ -1,6 +1,6 @@
 --
 -- A string.format wrapper that gracefully handles invalid arguments since
--- certain format string and argument combinations may casue errors or other
+-- certain format string and argument combinations may cause errors or other
 -- issues like log spoofing
 --
 -- Provides some protection from e.g. CAPEC-135, CWE-117, CWE-134, CWE-93