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

github.com/torch/cutorch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoumith Chintala <soumith@gmail.com>2015-04-01 23:14:40 +0300
committerSoumith Chintala <soumith@gmail.com>2015-04-01 23:14:40 +0300
commite31b701726347216e5dc81e51e56d3bf04d6da08 (patch)
tree520251324fc7af122e056cbfd6ca4ba24bf1fe37 /Tensor.lua
parent89180d5fc9eb526f5b39e14819a700847397066d (diff)
fixing small bug caught by linter
Diffstat (limited to 'Tensor.lua')
-rw-r--r--Tensor.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tensor.lua b/Tensor.lua
index b591613..bbe7e5c 100644
--- a/Tensor.lua
+++ b/Tensor.lua
@@ -46,7 +46,7 @@ local function Tensor__short(self,type)
return self:type('torch.ShortTensor')
end
-local function Tensor__Long(self,type)
+local function Tensor__long(self,type)
return self:type('torch.LongTensor')
end