minor comment fix

This commit is contained in:
conrad
2024-06-26 14:14:29 +10:00
parent 4a93a1a5d2
commit 6754eadb00
+1 -1
View File
@@ -1609,7 +1609,7 @@ subview<eT>::extract(Mat<eT>& out, const subview<eT>& 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