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

github.com/torch/torch.github.io.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Broll <brian.broll@gmail.com>2016-06-17 19:37:56 +0300
committerBrian Broll <brian.broll@gmail.com>2016-06-17 19:37:56 +0300
commit4923ed4e62b1167dd9f4ea150573c0bb692b51b7 (patch)
treeec890f171d86dcd9a19ef298cee3db930466ae1e
parentebc749d12e8da52ff09b7293099836efb396e18a (diff)
Fixed typo in __init function. Fixes #52
-rw-r--r--docs/02-developer-docs.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/02-developer-docs.md b/docs/02-developer-docs.md
index 4998748..73a2c53 100644
--- a/docs/02-developer-docs.md
+++ b/docs/02-developer-docs.md
@@ -117,7 +117,7 @@ Here is an empty holder for a typical new class:
local NewClass, Parent = torch.class('nn.NewClass', 'nn.Module')
function NewClass:__init()
- parent.__init(self)
+ Parent.__init(self)
end
function NewClass:updateOutput(input)