diff --git a/include/armadillo_bits/subview_meat.hpp b/include/armadillo_bits/subview_meat.hpp index 3f03f0d6..b97fd901 100644 --- a/include/armadillo_bits/subview_meat.hpp +++ b/include/armadillo_bits/subview_meat.hpp @@ -1609,7 +1609,7 @@ subview::extract(Mat& out, const subview& in) { arma_debug_print("subview::extract(): copying col (going across rows)"); - // in.colptr(0) the first column of the subview, taking into account any row offset + // in.colptr(0) is the first column of the subview, taking into account any row offset arrayops::copy( out.memptr(), in.colptr(0), n_rows ); } else