# HG changeset patch # User jwe # Date 1180506952 0 # Node ID 9042b00fc45ed4fb32349693fa9e2c641174b39c # Parent 14992092ab06e781a70108c78ae0273def995317 [project @ 2007-05-30 06:33:29 by jwe] diff --git a/scripts/general/circshift.m b/scripts/general/circshift.m --- a/scripts/general/circshift.m +++ b/scripts/general/circshift.m @@ -28,7 +28,7 @@ ## ## @example ## @group -## x = [1, 2, 3; 4, 5, 6, 7, 8, 9]; +## x = [1, 2, 3; 4, 5, 6; 7, 8, 9]; ## circshift (x, 1) ## @result{} 7, 8, 9 ## 1, 2, 3 diff --git a/src/data.cc b/src/data.cc --- a/src/data.cc +++ b/src/data.cc @@ -2454,10 +2454,10 @@ DEFUN (reshape, args, , "-*- texinfo -*-\n\ -@deftypefn {Function File} {} reshape (@var{a}, @var{m}, @var{n}, @dots{})\n\ -@deftypefnx {Function File} {} reshape (@var{a}, @var{siz})\n\ +@deftypefn {Built-in Function} {} reshape (@var{a}, @var{m}, @var{n}, @dots{})\n\ +@deftypefnx {Built-in Function} {} reshape (@var{a}, @var{siz})\n\ Return a matrix with the given dimensions whose elements are taken\n\ -from the matrix @var{a}. The elements of the matrix are access in\n\ +from the matrix @var{a}. The elements of the matrix are accessed in\n\ column-major order (like Fortran arrays are stored).\n\ \n\ For example,\n\ diff --git a/src/error.cc b/src/error.cc --- a/src/error.cc +++ b/src/error.cc @@ -974,8 +974,8 @@ \n\ @example\n\ @group\n\ -function f () g () end\n\ -function g () h () end\n\ +function f () g (); end\n\ +function g () h (); end\n\ function h () nargin == 1 || error (\"nargin != 1\"); end\n\ @end group\n\ @end example\n\