changeset 7710:9a6012d7cbb7

Minor texinfo errors
author David Bateman <dbateman@free.fr>
date Mon, 14 Apr 2008 13:30:40 -0400
parents fa41af732801
children 263bcc319233
files scripts/ChangeLog scripts/deprecated/lchol.m scripts/deprecated/splchol.m scripts/plot/rose.m
diffstat 4 files changed, 13 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Mon Apr 14 13:27:21 2008 -0400
+++ b/scripts/ChangeLog	Mon Apr 14 13:30:40 2008 -0400
@@ -1,3 +1,9 @@
+2008-04-14  David Bateman  <dbateman@free.fr>
+
+	* plot/rose.m: Add missing comment mark that causes issues with
+	octave-forge function referencing.
+	* deprecated/lchol.m, deprecated/splchol.m: Fix texinfo errors.
+
 2008-04-09  John W. Eaton  <jwe@octave.org>
 
 	* deprecated/beta_cdf.m, deprecated/beta_inv.m,
--- a/scripts/deprecated/lchol.m	Mon Apr 14 13:27:21 2008 -0400
+++ b/scripts/deprecated/lchol.m	Mon Apr 14 13:30:40 2008 -0400
@@ -19,7 +19,8 @@
 ## -*- texinfo -*-
 ## @deftypefn {Loadable Function} {@var{l} =} lchol (@var{a})
 ## @deftypefnx {Loadable Function} {[@var{l}, @var{p}] =} lchol (@var{a})
-## This function has been deprecated.  Use @code{chol (@dots,'lower')} instead.
+## This function has been deprecated.  Use @code{chol (@dots{},'lower')}
+## instead.
 ## @end deftypefn
 
 ## Deprecated in version 3.1
--- a/scripts/deprecated/splchol.m	Mon Apr 14 13:27:21 2008 -0400
+++ b/scripts/deprecated/splchol.m	Mon Apr 14 13:30:40 2008 -0400
@@ -20,7 +20,8 @@
 ## @deftypefn {Loadable Function} {@var{l} =} splchol (@var{a})
 ## @deftypefnx {Loadable Function} {[@var{l}, @var{p}] =} splchol (@var{a})
 ## @deftypefnx {Loadable Function} {[@var{l}, @var{p}, @var{q}] =} splchol (@var{a})
-## This function has been deprecated.  Use @code{chol (@dots,'lower')} instead.
+## This function has been deprecated.  Use @code{chol (@dots{},'lower')}
+## instead.
 ## @end deftypefn
 
 ## Deprecated in version 3.1
--- a/scripts/plot/rose.m	Mon Apr 14 13:27:21 2008 -0400
+++ b/scripts/plot/rose.m	Mon Apr 14 13:30:40 2008 -0400
@@ -19,8 +19,8 @@
 ## -*- texinfo -*-
 ## @deftypefn {Function File} {} rose (@var{th}, @var{r})
 ## @deftypefnx {Function File} {} rose (@var{h}, @dots{})
-## @deftypefnx {Function File} {@var{h} =} compass (@dots{})
-## @deftypefnx {Function File} {[@var{r}, @var{th}] =} compass (@dots{})
+## @deftypefnx {Function File} {@var{h} =} rose (@dots{})
+## @deftypefnx {Function File} {[@var{r}, @var{th}] =} rose (@dots{})
 ##
 ## Plot an angular histogram. With one vector argument @var{th}, plots the
 ## histogram with 20 angular bins. If @var{th} is a matrix, then each column
@@ -36,7 +36,7 @@
 ## If two output arguments are requested, then rather than plotting the 
 ## histogram, the polar vectors necessary to plot the histogram are 
 ## returned.
-#
+##
 ## @example
 ## [r, t] = rose ([2*randn(1e5,1), pi + 2 * randn(1e5,1)]);
 ## polar (r, t);