Merge pull request #252 from zjf/master

Fix a typo in comment
This commit is contained in:
Tianqi Chen 2015-04-23 14:37:26 -07:00
commit 4aa1ea2d44

View File

@ -111,7 +111,7 @@ struct ColBatch : public SparseBatch {
const bst_uint *col_index;
/*! \brief pointer to the column data */
const Inst *col_data;
/*! \brief get i-th row from the batch */
/*! \brief get i-th column from the batch */
inline Inst operator[](size_t i) const {
return col_data[i];
}