# HG changeset patch # User Kim Alvefur # Date 1643989238 -3600 # Node ID f7946c8e502f0f7c2c9c0ddf5e568e8de5b29e4f # Parent e729c994e7c7288c48ba150b73c2c7ea2d488396 util.format: Fix typo in comment [codespell] diff -r e729c994e7c7 -r f7946c8e502f 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