浏览代码

fixing segmentlib dox file (missing closing tags)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@52206 15284696-431f-4ddb-bdfa-cd5b030d7da7
Vaclav Petras 13 年之前
父节点
当前提交
33086db47f
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lib/segment/segmentlib.dox

+ 2 - 2
lib/segment/segmentlib.dox

@@ -88,11 +88,11 @@ This can be done with the <I>Segment Library</I> routine:
 
 <P>
 <I>int segment_open(SEGMENT *SEG, char *fname, off_t nrows, off_t ncols,
-  int srows, int scols, int len, int nseg), open a new segment structure.
+  int srows, int scols, int len, int nseg)</I>, open a new segment structure.
 <P>
   A new file with full path name <B>fname</B> will be created and 
   formatted. The original nonsegmented data matrix consists of 
-  <B>nrows</B> and <B>ncols. The segments consist of <B>srows</B> by 
+  <B>nrows</B> and <B>ncols</B>. The segments consist of <B>srows</B> by
   <B>scols</B>. The data items have length <B>len</B> bytes. The number 
   of segments to be retained in memory is given by <B>nseg</B>. This 
   routine calls segment_format() and segment_init(), see below. If