Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/trepl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Ulyanov <dmitry.ulyanov.msu@gmail.com>2016-10-29 15:01:45 +0300
committerGitHub <noreply@github.com>2016-10-29 15:01:45 +0300
commit254705ad1a7e85f88ef8b5a0aecb159fdd8a3549 (patch)
tree19fe0de8191245e73af4f3623142d565e226ecfe
parent216531666d303c28a1c7f6a0e20e7804231a2ca8 (diff)
fix typo
-rw-r--r--init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index 67ab5e4..c46f675 100644
--- a/init.lua
+++ b/init.lua
@@ -479,13 +479,13 @@ function monitor_G(cb)
report = error
end
if line > 0 then
- report(colors.red .. 'atempt to read undeclared variable: '
+ report(colors.red .. 'attempt to read undeclared variable: '
.. colors.blue .. key .. colors.none
.. ' @ ' .. colors.magenta .. file .. colors.none
.. ':' .. colors.green .. line .. colors.none
)
else
- report(colors.red .. 'atempt to read undeclared variable: '
+ report(colors.red .. 'attempt to read undeclared variable: '
.. colors.blue .. key .. colors.none
.. ' @ ' .. colors.yellow .. '[C-module]' .. colors.none
)