From 329d654e378ffc80711687bae0e516ea1712e63c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Blot?= Date: Fri, 24 Mar 2017 08:59:52 +0100 Subject: [PATCH] Typo fix --- builtin/common/misc_helpers.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/common/misc_helpers.lua b/builtin/common/misc_helpers.lua index 2318cea12..1d5b51fc6 100644 --- a/builtin/common/misc_helpers.lua +++ b/builtin/common/misc_helpers.lua @@ -671,7 +671,7 @@ else local color_code = core.get_color_escape_sequence(color) for i, line in ipairs(lines) do - lines[i] = colour_code .. line + lines[i] = color_code .. line end return table.concat(lines, "\n") .. core.get_color_escape_sequence("#ffffff")