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:
authorSoumith Chintala <soumith@gmail.com>2016-10-04 17:57:43 +0300
committerGitHub <noreply@github.com>2016-10-04 17:57:43 +0300
commitf0464d81308956a67680c5bf5ebe36e7f5c0d01c (patch)
treecd9cf189da1e70995a5eb6a34b39e4dd23c9a23e
parente2ff621ef47aaac58bbda5c44100ece956f3aa1b (diff)
parent97471139c4bc2555da61722834390ed0ac3dd30e (diff)
Merge pull request #80 from JasperSnoek/patch-1
Tiny typo
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 11855fa..c82bbbf 100644
--- a/README.md
+++ b/README.md
@@ -151,7 +151,7 @@ to create higher-level abstractions.
This class is used to manage a set of queue threads:
```lua
local threads = require 'threads'
-local t = thread.Threads(4) -- create a pool of 4 threads
+local t = threads.Threads(4) -- create a pool of 4 threads
```
Note that in the past the `threads` package was providing only one class (`Threads`) and it was possible to do: