# HG changeset patch # User John W. Eaton # Date 1340743795 14400 # Node ID f06a1602102418580feeb9fd436544a0cc89852a # Parent 980e2d5c83f75208d64f150b657ed32a3a5a807a doc: trivial doc fix * oop.txi: remove stray \ from @ifnottex table, not @iftex table (I guess this fix wasn't so trivial after all). diff -r 980e2d5c83f7 -r f06a16021024 doc/interpreter/oop.txi --- a/doc/interpreter/oop.txi Tue Jun 26 16:18:35 2012 -0400 +++ b/doc/interpreter/oop.txi Tue Jun 26 16:49:55 2012 -0400 @@ -549,7 +549,7 @@ & $a >= b$ && ge (a, b) && Greater than or equal to operator&\cr & $a == b$ && eq (a, b) && Equal to operator&\cr & $a != b$ && ne (a, b) && Not equal to operator&\cr -& $a & b$ && and (a, b) && Logical and operator&\cr +& $a \& b$ && and (a, b) && Logical and operator&\cr & $a | b$ && or (a, b) && Logical or operator&\cr & $! b$ && not (a) && Logical not operator&\cr & $a'$ && ctranspose (a) && Complex conjugate transpose operator &\cr @@ -586,7 +586,7 @@ @item @tab a >= b @tab ge (a, b) @tab Greater than or equal to operator @tab @item @tab a == b @tab eq (a, b) @tab Equal to operator @tab @item @tab a != b @tab ne (a, b) @tab Not equal to operator @tab -@item @tab a \& b @tab and (a, b) @tab Logical and operator @tab +@item @tab a & b @tab and (a, b) @tab Logical and operator @tab @item @tab a | b @tab or (a, b) @tab Logical or operator @tab @item @tab ! b @tab not (a) @tab Logical not operator @tab @item @tab a' @tab ctranspose (a) @tab Complex conjugate transpose operator @tab