diff doc/interpreter/vectorize.txi @ 31376:ad8a4102f910

doc: Spellcheck documentation for 8.1 release. * aspell-octave.en.pws: Update private dictionary with new Octave-specific words and remove words no longer required. * install.txi, preface.txi, vectorize.txi, interpreter.cc, qr.cc, uimenu.m, uiputfile.m: Correct spellings and/or use @nospell macro to remove words from spellchecking.
author Rik <rik@octave.org>
date Mon, 31 Oct 2022 10:01:50 -0700
parents 96f751f8392c
children 597f3ee61a48
line wrap: on
line diff
--- a/doc/interpreter/vectorize.txi	Sun Oct 30 21:58:36 2022 -0700
+++ b/doc/interpreter/vectorize.txi	Mon Oct 31 10:01:50 2022 -0700
@@ -410,10 +410,10 @@
       +=  -=  .*=  ./=  .\=  .^=  &=  |=
 @end example
 
-Here is a real example of the power of broadcasting.  The Floyd-Warshall
-algorithm is used to calculate the shortest path lengths between every pair of
-vertices in a graph.  A naive implementation for a graph adjacency matrix of
-order @var{n} might look like this:
+Here is a real example of the power of broadcasting.  The
+@nospell{Floyd-Warshall} algorithm is used to calculate the shortest path
+lengths between every pair of vertices in a graph.  A naive implementation for
+a graph adjacency matrix of order @var{n} might look like this:
 
 @example
 @group
@@ -471,8 +471,8 @@
 faster ordinary matrix multiplication, @code{@var{c} = @var{a}*@var{b};}.
 
 A note on terminology: ``broadcasting'' is the term popularized by the
-Numpy numerical environment in the Python programming language.  In other
-programming languages and environments, broadcasting may also be known
+@nospell{Numpy} numerical environment in the Python programming language.  In
+other programming languages and environments, broadcasting may also be known
 as @emph{binary singleton expansion} (@nospell{BSX}, in @sc{matlab}, and the
 origin of the name of the @code{bsxfun} function), @emph{recycling} (R
 programming language), @emph{single-instruction multiple data} (SIMD),