From 3f2f3416c685395b01b53449a2a18920284e952b Mon Sep 17 00:00:00 2001 From: jyelon Date: Thu, 19 Feb 2026 00:34:03 -0500 Subject: [PATCH] Remove some unhelpful docs --- Docs/Lua-String-Formatting.md | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 Docs/Lua-String-Formatting.md diff --git a/Docs/Lua-String-Formatting.md b/Docs/Lua-String-Formatting.md deleted file mode 100644 index 1259f116..00000000 --- a/Docs/Lua-String-Formatting.md +++ /dev/null @@ -1,12 +0,0 @@ -# Lua String Formatting - -Lua contains a builtin routine, string.format, which is similar to "printf." -We have reimplemented this from scratch, adding a bunch of new formatting -directives. - -We have also added formatting routines that output to the -console and the debug logs. The new routines are: - -format(format_string, arg1, arg2, arg3...) -dformat(format_string, arg1, arg2, arg3...) -