changeset 8476:4998c6c78632

[docs] fix case to match example
author Brian Gough <bjg@gnu.org>
date Tue, 13 Jan 2009 00:23:28 -0500
parents cc3ad79fd6b7
children 433e788a015b
files doc/interpreter/intro.txi
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/intro.txi	Tue Jan 13 00:23:21 2009 -0500
+++ b/doc/interpreter/intro.txi	Tue Jan 13 00:23:28 2009 -0500
@@ -113,7 +113,7 @@
 @subsection Matrix Arithmetic
 
 Octave has a convenient operator notation for performing matrix
-arithmetic.  For example, to multiply the matrix @code{a} by a scalar
+arithmetic.  For example, to multiply the matrix @code{A} by a scalar
 value, type the command
 
 @example
@@ -121,7 +121,7 @@
 @end example
 
 @noindent
-To multiply the two matrices @code{a} and @code{b}, type the command
+To multiply the two matrices @code{A} and @code{B}, type the command
 
 @example
 octave:5> A * B