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:
authorClement Farabet <clement.farabet@gmail.com>2012-07-02 04:18:51 +0400
committerClement Farabet <clement.farabet@gmail.com>2012-07-02 04:18:51 +0400
commitd273a1407b0b4823f6330ab748665c81d18a586b (patch)
tree48e6041a86761231dbadf5330c98b6271a89abd0
parent12f5073c143f3c30ff61477daa1f553bd1ed06a1 (diff)
Little fix (typo in dok)
-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