changeset 18040:62f94ef938b4 stable

don't use period after end of @seealso{...} * file-io.cc (FSEEK_CUR, FSEEK_END): Don't use period after @seealso in doc string.
author John W. Eaton <jwe@octave.org>
date Mon, 02 Dec 2013 14:57:25 -0500
parents 708173343c50
children c0c61619917e
files libinterp/corefcn/file-io.cc
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/file-io.cc	Mon Dec 02 12:05:14 2013 -0500
+++ b/libinterp/corefcn/file-io.cc	Mon Dec 02 14:57:25 2013 -0500
@@ -2222,7 +2222,7 @@
 @deftypefn {Built-in Function} {} SEEK_CUR ()\n\
 Return the numerical value to pass to @code{fseek} to\n\
 position the file pointer relative to the current position.\n\
-@seealso{SEEK_SET, SEEK_END}.\n\
+@seealso{SEEK_SET, SEEK_END}\n\
 @end deftypefn")
 {
   return const_value ("SEEK_CUR", args, 0);
@@ -2233,7 +2233,7 @@
 @deftypefn {Built-in Function} {} SEEK_END ()\n\
 Return the numerical value to pass to @code{fseek} to\n\
 position the file pointer relative to the end of the file.\n\
-@seealso{SEEK_SET, SEEK_CUR}.\n\
+@seealso{SEEK_SET, SEEK_CUR}\n\
 @end deftypefn")
 {
   return const_value ("SEEK_END", args, 1);