# HG changeset patch # User Rik # Date 1453354255 28800 # Node ID 71408ab5071ed7ddf47b8c177d0785592c6f69b0 # Parent dba88797f69fd0ee5103161213f78671292a6d71 doc: Periodic spellcheck of documentation. * aspell-octave.en.pws: Add new words to dictionary. * hash.cc (Fhash): Add @nospell macro around "abc". * variables.cc (Fexist): Add @nospell macro around "sandboxing". * ode23.m: Add @nospell macro around "Bogacki-Shampine" and "Van der Pol" * odeplot.m: Add @nospell macro around "Van der Pol". diff -r dba88797f69f -r 71408ab5071e doc/interpreter/doccheck/aspell-octave.en.pws --- a/doc/interpreter/doccheck/aspell-octave.en.pws Wed Jan 20 21:14:47 2016 -0800 +++ b/doc/interpreter/doccheck/aspell-octave.en.pws Wed Jan 20 21:30:55 2016 -0800 @@ -497,6 +497,7 @@ Jacobians javaaddpath javamem +Javascript jbig JDK JIT @@ -890,6 +891,7 @@ SelectionMode semidefinite Sep +SHA shiftdim si signum diff -r dba88797f69f -r 71408ab5071e libinterp/corefcn/hash.cc --- a/libinterp/corefcn/hash.cc Wed Jan 20 21:14:47 2016 -0800 +++ b/libinterp/corefcn/hash.cc Wed Jan 20 21:30:55 2016 -0800 @@ -84,8 +84,8 @@ Secure Hash Algorithm 2 (512 Bits, RFC 6234)\n\ @end table\n\ \n\ -To calculate for example the MD5 hash value of the string @qcode{\"abc\"}\n\ -the @code{hash} function is called as follows:\n\ +To calculate for example the MD5 hash value of the string\n\ +@nospell{@qcode{\"abc\"}} the @code{hash} function is called as follows:\n\ \n\ @example\n\ @group\n\ diff -r dba88797f69f -r 71408ab5071e libinterp/corefcn/variables.cc --- a/libinterp/corefcn/variables.cc Wed Jan 20 21:14:47 2016 -0800 +++ b/libinterp/corefcn/variables.cc Wed Jan 20 21:30:55 2016 -0800 @@ -575,7 +575,8 @@ \n\ Programming Note: If @var{name} is implemented by a buggy .oct/.mex file,\n\ calling @var{exist} may cause Octave to crash. To maintain high\n\ -performance, Octave trusts .oct/.mex files instead of sandboxing them.\n\ +performance, Octave trusts .oct/.mex files instead of @nospell{sandboxing}\n\ +them.\n\ \n\ @seealso{file_in_loadpath, file_in_path, dir_in_loadpath, stat}\n\ @end deftypefn") diff -r dba88797f69f -r 71408ab5071e scripts/ode/ode23.m --- a/scripts/ode/ode23.m Wed Jan 20 21:14:47 2016 -0800 +++ b/scripts/ode/ode23.m Wed Jan 20 21:30:55 2016 -0800 @@ -26,8 +26,8 @@ ## @deftypefnx {Function File} {@var{solution} =} ode23 (@dots{}) ## ## Solve a set of non-stiff Ordinary Differential Equations (non-stiff ODEs) -## with the well known explicit Bogacki-Shampine method of order 3. For the -## definition of this method see +## with the well known explicit @nospell{Bogacki-Shampine} method of order 3. +## For the definition of this method see ## @url{http://en.wikipedia.org/wiki/List_of_Runge%E2%80%93Kutta_methods}. ## ## @var{fun} is a function handle, inline function, or string containing the @@ -81,7 +81,7 @@ ## row of @var{y} contains the values of all unknowns at the time value ## contained in the corresponding row in @var{t}. ## -## Example: Solve the Van der Pol equation +## Example: Solve the @nospell{Van der Pol} equation ## ## @example ## @group diff -r dba88797f69f -r 71408ab5071e scripts/ode/odeplot.m --- a/scripts/ode/odeplot.m Wed Jan 20 21:14:47 2016 -0800 +++ b/scripts/ode/odeplot.m Wed Jan 20 21:30:55 2016 -0800 @@ -48,7 +48,8 @@ ## performance. ## ## For example, solve an anonymous implementation of the -## @qcode{"Van der Pol"} equation and display the results while solving +## @nospell{@qcode{"Van der Pol"}} equation and display the results while +## solving ## ## @example ## @group