aboutsummaryrefslogtreecommitdiff
path: root/challenge-097/paulo-custodio/lua/ch-1.lua
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-097/paulo-custodio/lua/ch-1.lua')
-rw-r--r--challenge-097/paulo-custodio/lua/ch-1.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-097/paulo-custodio/lua/ch-1.lua b/challenge-097/paulo-custodio/lua/ch-1.lua
index 4bb62c085d..46c6b0f418 100644
--- a/challenge-097/paulo-custodio/lua/ch-1.lua
+++ b/challenge-097/paulo-custodio/lua/ch-1.lua
@@ -22,7 +22,7 @@ Ciphertext: QEB NRFZH YOLTK CLU GRJMP LSBO QEB IXWV ALD
--]]
function caesar(n, text)
- text = string.upper(text)
+ local text = string.upper(text)
local cipher = ""
for i=1, #text do