From 9d8078b48345770febd81a8b03cbeb46bba16949 Mon Sep 17 00:00:00 2001 From: Thierry Moisan Date: Mon, 4 Aug 2008 19:59:47 -0400 Subject: [PATCH] Fixing a little typo in the Matrix documentation --- Matrix.i | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Matrix.i b/Matrix.i index 81446e7..a78f31d 100644 --- a/Matrix.i +++ b/Matrix.i @@ -517,7 +517,7 @@ Sets a the values of a row with the elements of an array. You can also set multiple rows at once with chained calls: my $matrix = Math::GSL::Matrix->new(3,3); - $matrix->set_row(0, [8, 6, 2]); + $matrix->set_row(0, [8, 6, 2]) ->set_row(1, [2, 4, 1]); ... @@ -542,7 +542,7 @@ Sets a the values of a column with the elements of an array. You can also set multiple columns at once with chained calls: my $matrix = Math::GSL::Matrix->new(3,3); - $matrix->set_col(0, [8, 6, 2]); + $matrix->set_col(0, [8, 6, 2]) ->set_col(1, [2, 4, 1]); ... -- 2.11.4.GIT