# HG changeset patch # User Thorsten Meyer # Date 1232312496 -3600 # Node ID 0eb83938c8bc97f8657d7a4de1a88f10bcbc8b6e # Parent fb1b87ea4af98498a68ecc7fa52c86089254d544 Trivial fixes in numbers.txi diff -r fb1b87ea4af9 -r 0eb83938c8bc doc/ChangeLog --- a/doc/ChangeLog Sat Jan 17 17:32:11 2009 -0500 +++ b/doc/ChangeLog Sun Jan 18 22:01:36 2009 +0100 @@ -1,3 +1,7 @@ +2009-01-18 Thorsten Meyer + + * interpreter/numbers.txi (Numeric Data Types): Trivial fixes. + 2009-01-14 Thorsten Meyer * interpreter/matrix.txi: Add anchor for doc-postpad. diff -r fb1b87ea4af9 -r 0eb83938c8bc doc/interpreter/numbers.txi --- a/doc/interpreter/numbers.txi Sat Jan 17 17:32:11 2009 -0500 +++ b/doc/interpreter/numbers.txi Sun Jan 18 22:01:36 2009 +0100 @@ -30,8 +30,9 @@ constants are represented within Octave in double-precision floating point format (complex constants are stored as pairs of double-precision floating point values). It is however possible to represent real -integers as described in @ref{Integer Data Types}. Here are some examples -of real-valued numeric constants, which all have the same value: +integers as described in @ref{Integer Data Types}. Here are some +examples of real-valued numeric constants, which all have the same +value: @example @group @@ -412,7 +413,7 @@ Octave includes support for single precision data types, and most of the functions in Octave accept single precision values and return single precion answers. A single precision variable is created with the -@code{sample} function. +@code{single} function. @DOCSTRING(single) @@ -420,8 +421,9 @@ @example sngl = single (rand (2, 2)) - @result{} sngl = 0.37569 0.92982 - 0.11962 0.50876 + @result{} sngl = + 0.37569 0.92982 + 0.11962 0.50876 class (sngl) @result{} single @end example