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

github.com/torch/dok.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doktutorial/index.dok2
1 files changed, 1 insertions, 1 deletions
diff --git a/doktutorial/index.dok b/doktutorial/index.dok
index ad83b2e..c41dcae 100644
--- a/doktutorial/index.dok
+++ b/doktutorial/index.dok
@@ -405,7 +405,7 @@ Before we go any further, let's just review one basic thing: saving code to file
As Torch relies on Lua, it's best to give all your files a .lua extension. Let's generate a lua file that contains some Lua code, and then execute it:
<file lua>
-$ echo "print('Hello World!')" > helloworld.lua
+$ echo "print('Hello World\!')" > helloworld.lua
...
$ torch helloworld.lua