Misc. typos

Most are non-user facing. Hope this is not too annoying of a PR. 

Used `codespell -d -q 3 --skip="*.po,*.ts,./.git,./external"` to locate typos

Former-commit-id: dc31807ff5
This commit is contained in:
Unknown
2018-01-14 06:07:31 -05:00
committed by luz.paz
parent 47e87d4ccf
commit 2ddb11aa6b
75 changed files with 102 additions and 102 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ py::class_<Type> bind_eigen_2(py::module &m, const char *name) {
.def("rows", [](const Type &m) { return m.rows(); })
.def("shape", [](const Type &m) { return std::tuple<int,int>(m.rows(), m.cols()); })
/* Extract rows and colums */
/* Extract rows and columns */
.def("col", [](const Type &m, int i) {
if (i<0 || i>=m.cols())
throw std::runtime_error("Column index out of bound.");