# HG changeset patch # User John W. Eaton # Date 1225404217 14400 # Node ID 16819ca24fa54b1f9ba92002b754fbd189649535 # Parent b2a6309b2d8766b6df6c14f63c645e2ced50b87c fix typo in docs diff --git a/doc/ChangeLog b/doc/ChangeLog --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -6,7 +6,7 @@ * interpreter/plot.txi: Document contour groups. -2008-10-29 Thorsten Meyer +2008-10-29 Thorsten Meyer * interpreter/system.txi, interpreter/poly.txi, interpreter/arith.txi, interpreter/poly.txi, diff --git a/doc/interpreter/oop.txi b/doc/interpreter/oop.txi --- a/doc/interpreter/oop.txi +++ b/doc/interpreter/oop.txi @@ -369,7 +369,7 @@ & Operation && Method && Description &\cr \noalign{\hrule} & $a + b$ && plus (a, b) && Binary addition operator&\cr -& $a - b$ && plus (a, b) && Binary subtraction operator&\cr +& $a - b$ && minus (a, b) && Binary subtraction operator&\cr & $+ a$ && uplus (a) && Unary addition operator&\cr & $- a$ && uminus (a) && Unary subtraction operator&\cr & $a .* b$ && times (a, b) && Element-wise multiplication operator&\cr @@ -407,7 +407,7 @@ @multitable @columnfractions .1 .20 .20 .40 .1 @item @tab Operation @tab Method @tab Description @tab @item @tab a + b @tab plus (a, b) @tab Binary addition @tab -@item @tab a - b$ @tab plus (a, b) @tab Binary subtraction operator @tab +@item @tab a - b$ @tab minus (a, b) @tab Binary subtraction operator @tab @item @tab + a$ @tab uplus (a) @tab Unary addition operator @tab @item @tab - a$ @tab uminus (a) @tab Unary subtraction operator @tab @item @tab a .* b$ @tab times (a, b) @tab Element-wise multiplication operator @tab