# HG changeset patch # User David Bateman # Date 1224218904 -3600 # Node ID 7eedf503ba1cf1cbce6deb753add8e04f216e8ab # Parent 8c4e79668a5e1386d0146145d1cbe354316868a3 Small makeinfo doc fixes diff --git a/doc/interpreter/expr.txi b/doc/interpreter/expr.txi --- a/doc/interpreter/expr.txi +++ b/doc/interpreter/expr.txi @@ -187,8 +187,6 @@ particularly for large matrices because Octave does not have to repeatedly resize the result. -@DOCSTRING(subsref) - @DOCSTRING(sub2ind) @DOCSTRING(ind2sub) @@ -1010,8 +1008,6 @@ programs hard to read. Except in a one-shot program, you should rewrite it to get rid of such nesting of assignments. This is never very hard. -@DOCSTRING(subsasgn) - @cindex increment operator @cindex decrement operator @cindex operators, increment diff --git a/doc/interpreter/func.txi b/doc/interpreter/func.txi --- a/doc/interpreter/func.txi +++ b/doc/interpreter/func.txi @@ -881,13 +881,13 @@ @ref{Object Oriented Programming}. @item Legacy Dispatch -An overloaded function as defined by @xref{dispatch}. +An overloaded function as defined by @xref{doc-dispatch}. @item Command-line Function A function that has been defined on the command-line. @item Autoload function -A function that is marked as autoloaded with @xref{autoload}. +A function that is marked as autoloaded with @xref{doc-autoload}. @item A Function on the Path A function that can be found on the users load-path. There can also be diff --git a/doc/interpreter/oop.txi b/doc/interpreter/oop.txi --- a/doc/interpreter/oop.txi +++ b/doc/interpreter/oop.txi @@ -265,7 +265,7 @@ @DOCSTRING(subsref) For example we might decide that indexing with "()" evaluates the -polynomial and indexing with "{}" returns the @var{n}-th coefficient. +polynomial and indexing with "@{@}" returns the @var{n}-th coefficient. In this case the @code{subsref} method of our polynomial class might look like @polynomialfile{subsref.m}