diff doc/interpreter/dynamic.txi @ 9080:ec41eabf4499

Cleanup documentation files dynamic.texi, testfun.texi, tips.texi
author Rik <rdrider0-list@yahoo.com>
date Thu, 02 Apr 2009 14:45:33 -0700
parents fca0dc2fb042
children 923c7cb7f13f
line wrap: on
line diff
--- a/doc/interpreter/dynamic.txi	Thu Apr 02 14:12:25 2009 -0700
+++ b/doc/interpreter/dynamic.txi	Thu Apr 02 14:45:33 2009 -0700
@@ -355,7 +355,7 @@
 
 @longexamplefile{stringdemo.cc}
 
-An example of the of the use of this function is
+An example of the use of this function is
 
 @example
 @group
@@ -941,7 +941,7 @@
 The underlying Fortran code should use the @code{XSTOPX} function to
 replace the Fortran @code{STOP} function.  @code{XSTOPX} uses the Octave
 exception handler to treat failing cases in the fortran code
-explicitly.  Note that Octave supplies its own replacement blas
+explicitly.  Note that Octave supplies its own replacement @sc{blas}
 @code{XERBLA} function, which uses @code{XSTOPX}.
 
 If the underlying code calls @code{XSTOPX}, then the @code{F77_XFCN}
@@ -1018,7 +1018,7 @@
 
 There are several functions within Octave that might be useful for the
 purposes of parameter checking.  These include the methods of the
-octave_value class like @code{is_real_matrix}, etc, but equally include
+octave_value class like @code{is_real_matrix}, etc., but equally include
 more specialized functions.  Some of the more common ones are
 demonstrated in the following example
 
@@ -1088,7 +1088,7 @@
 The Octave unwind_protect mechanism (@ref{The @code{unwind_protect} Statement})
 can also be used in oct-files.  In conjunction with the exception
 handling of Octave, it is important to enforce that certain code is run
-to allow variables, etc to be restored even if an exception occurs.  An
+to allow variables, etc. to be restored even if an exception occurs.  An
 example of the use of this mechanism is
 
 @longexamplefile{unwinddemo.cc}
@@ -1294,7 +1294,7 @@
 name.
 
 Allow the user should only include @code{mex.h} in their code, Octave
-declares additional functions, typedefs, etc, available to the user to
+declares additional functions, typedefs, etc., available to the user to
 write mex-files in the headers @code{mexproto.h} and @code{mxarray.h}.
 
 @node Working with Matrices and Arrays in Mex-Files
@@ -1336,14 +1336,14 @@
 @end group
 @end example
 
-There are also the functions @code{mxSetPr}, etc, that perform the
+There are also the functions @code{mxSetPr}, etc., that perform the
 inverse, and set the data of an Array to use the block of memory pointed
 to by the argument of @code{mxSetPr}.
 
 Note the type @code{mwSize} used above, and @code{mwIndex} are defined
 as the native precision of the indexing in Octave on the platform on
-which the mex-file is built. This allows both 32- and 64-bit platforms
-to support mex-files. @code{mwSize} is used to define array dimension
+which the mex-file is built.  This allows both 32- and 64-bit platforms
+to support mex-files.  @code{mwSize} is used to define array dimension
 and maximum number or elements, while @code{mwIndex} is used to define
 indexing into arrays.
 
@@ -1427,7 +1427,7 @@
 @end group
 @end example
 
-Note in the example the use of the @code{mxDuplicateArry} function.  This
+Note in the example the use of the @code{mxDuplicateArray} function.  This
 is needed as the @code{mxArray} pointer returned by @code{mxGetCell}
 might be deallocated.  The inverse function to @code{mxGetCell} is
 @code{mcSetCell} and is defined as
@@ -1640,11 +1640,11 @@
 @end example
 
 Note that the application @code{hello} will be dynamically linked
-against the octave libraries and any octave support libraries. The above
-allows the Octave math libraries to be used by an application. It does
+against the octave libraries and any octave support libraries.  The above
+allows the Octave math libraries to be used by an application.  It does
 not however allow the script files, oct-files or builtin functions of
-Octave to be used by the application. To do that the Octave interpreter
-needs to be initialized first. An example of how to do this can then be
+Octave to be used by the application.  To do that the Octave interpreter
+needs to be initialized first.  An example of how to do this can then be
 seen in the code
 
 @examplefile{embedded.cc}