Unverified Commit da9f14df authored by ZenoTan's avatar ZenoTan Committed by GitHub
Browse files

Fix typos (#2285)

parent 7b972981
...@@ -168,7 +168,7 @@ class Column(object): ...@@ -168,7 +168,7 @@ class Column(object):
Tensor Tensor
The feature data The feature data
""" """
return F.gather_row(self.data, rwoids) return F.gather_row(self.data, rowids)
def __setitem__(self, rowids, feats): def __setitem__(self, rowids, feats):
"""Update the feature data given the index. """Update the feature data given the index.
...@@ -183,7 +183,7 @@ class Column(object): ...@@ -183,7 +183,7 @@ class Column(object):
feats : Tensor feats : Tensor
New features. New features.
""" """
self.update(idx, feats) self.update(rowids, feats)
def update(self, rowids, feats): def update(self, rowids, feats):
"""Update the feature data given the index. """Update the feature data given the index.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment