Changeset

12261:f7946c8e502f

util.format: Fix typo in comment [codespell]
author Kim Alvefur <zash@zash.se>
date Fri, 04 Feb 2022 16:40:38 +0100
parents 12260:e729c994e7c7
children 12262:50525021c2c7
files util/format.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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