diff doc/interpreter/external.txi @ 18075:24759ac2b8cb stable

doc: Periodic spellcheck of documentation * aspell-octave.en.pws: Remove WebKit from private dictionary. * external.txi: Fix typos and use two spaces for sentence breaks. * install.txi: Use @nospell macro around gl2ps. * rgb2ind.m: Correct British spelling of colour to American spelling.
author Rik <rik@octave.org>
date Wed, 04 Dec 2013 08:41:22 -0800
parents 3341d2f1e5db
children adb7c7e6a4a1
line wrap: on
line diff
--- a/doc/interpreter/external.txi	Tue Dec 03 20:54:30 2013 -0800
+++ b/doc/interpreter/external.txi	Wed Dec 04 08:41:22 2013 -0800
@@ -1773,17 +1773,18 @@
 @end group
 @end example
 
-It is worth noting that, if only builtin funcions are to be calle from 
+It is worth noting that, if only builtin functions are to be called from 
 a C++ standalone program, then it does not need to initialize the 
-interpreter to do so. The general rule is that, for a builtin 
+interpreter to do so.  The general rule is that, for a builtin 
 function named @code{function_name} in the interpreter, there will be
 a C++ function named @code{Ffunction_name} (note the prepended capital 
-@code{F}) accessible in the C++ API. The declarations for all builtin 
+@code{F}) accessible in the C++ API@.  The declarations for all builtin 
 functions are collected in the header file @code{builtin-defun-decls.h}.
-This feature should be used with care as the list of built-in functions can change.  
-No guarantees can be made that a function that is currently built in won't be implemented 
-as a .m file or as a dynamically linked function in the future.
-An example of how to call builtin functions from C++ can be seen in the code
+This feature should be used with care as the list of built-in functions can
+change.  No guarantees can be made that a function that is currently built in
+won't be implemented as a .m file or as a dynamically linked function in the
+future.  An example of how to call builtin functions from C++ can be seen in the
+code
 
 @example
 @EXAMPLEFILE(standalonebuiltin.cc)