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):
Tensor
The feature data
"""
return F.gather_row(self.data, rwoids)
return F.gather_row(self.data, rowids)
def __setitem__(self, rowids, feats):
"""Update the feature data given the index.
......@@ -183,7 +183,7 @@ class Column(object):
feats : Tensor
New features.
"""
self.update(idx, feats)
self.update(rowids, feats)
def update(self, rowids, feats):
"""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