diff doc/interpreter/numbers.txi @ 11573:6f8ffe2c6f76

Grammarcheck txi files for 3.4 release.
author Rik <octave@nomad.inbox5.com>
date Wed, 19 Jan 2011 20:29:11 -0800
parents fd0a3ac60b0e
children 66b2c377b38e
line wrap: on
line diff
--- a/doc/interpreter/numbers.txi
+++ b/doc/interpreter/numbers.txi
@@ -394,13 +394,14 @@
 80,000 bytes of storage on a typical 32-bit workstation.
 
 A common example of when it does become necessary to convert ranges into
-vectors occurs when they appear within a vector (i.e. inside square
-brackets). For instance, whereas
+vectors occurs when they appear within a vector (i.e., inside square
+brackets).  For instance, whereas
 
 @example
 x = 0 : 0.1 : 1;
 @end example
 
+@noindent
 defines @var{x} to be a variable of type @code{range} and occupies 24
 bytes of memory, the expression
 
@@ -408,6 +409,7 @@
 y = [ 0 : 0.1 : 1];
 @end example
 
+@noindent
 defines @var{y} to be of type @code{matrix} and occupies 88 bytes of
 memory.