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

github.com/torch/threads-ffi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaiyu Yang <yangky11@outlook.com>2015-10-04 08:48:36 +0300
committerKaiyu Yang <yangky11@outlook.com>2015-10-04 08:48:36 +0300
commitc73f1f58c80f0f3ad1878a47b1fdcc9eea5fb225 (patch)
tree06f167d7cc5df946e99e2e11e82bb8e2f4697b7b
parentac3fad42964bcae3b07950192c0d3ecbfcf9c2ba (diff)
format
-rw-r--r--README.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index 7d3e6a9..54b6ccf 100644
--- a/README.md
+++ b/README.md
@@ -207,8 +207,7 @@ threads.Threads(4,
Note that the id of each thread is also stored into the global variable `__threadid` (in each thread Lua state).
Notice about Upvalues:
-When deserializing a callback, upvalues must be of known types.
-Since f1,f2,... in [threads.Threads](#threads.Threads) are deserialized in order, we suggest that you make a separated f1 containing all the definitions and put the other code in f2,f3,...
+When deserializing a callback, upvalues must be of known types. Since f1,f2,... in [threads.Threads](#threads.Threads) are deserialized in order, we suggest that you make a separated f1 containing all the definitions and put the other code in f2,f3,...
e.g.
```
require 'nn'