From: Giftpflanze <80504430+gifti258@users.noreply.github.com> Date: Sat, 17 Sep 2022 23:10:14 +0000 (+0200) Subject: math.matrices: Fix matrix-set-nths typo X-Git-Tag: 0.99~1062 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=506ab4f888c433aaf3cb7d3f1dfc7239946b3c15 math.matrices: Fix matrix-set-nths typo --- diff --git a/basis/math/matrices/matrices-docs.factor b/basis/math/matrices/matrices-docs.factor index 569c82317e..0554f7797c 100644 --- a/basis/math/matrices/matrices-docs.factor +++ b/basis/math/matrices/matrices-docs.factor @@ -633,7 +633,7 @@ HELP: matrix-set-nths "Throws an error if the sequence cannot hold elements of the given type." } } { $examples - "Change both entries on row 0." + "Change both entries on row 1." { $example "USING: math.matrices kernel prettyprint ;" "{ { 0 1 } { 2 3 } } \"a\" { { 1 0 } { 1 1 } } pick matrix-set-nths ."