pdf-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[pdf-devel] [PATCH] Update documentation for pdf_fsys_disk_item_p and fi


From: Zac Brown
Subject: [pdf-devel] [PATCH] Update documentation for pdf_fsys_disk_item_p and fix other grammatical errors.
Date: Fri, 04 Jul 2008 14:12:52 -0700
User-agent: Thunderbird 2.0.0.14 (X11/20080505)

Update documentation for pdf_fsys_disk_item_p and fix other grammatical errors.
Index: doc/gnupdf.texi
===================================================================
RCS file: /cvsroot/pdf/libgnupdf/doc/gnupdf.texi,v
retrieving revision 1.78
diff -u -r1.78 gnupdf.texi
--- doc/gnupdf.texi     2 Jul 2008 20:28:41 -0000       1.78
+++ doc/gnupdf.texi     4 Jul 2008 21:10:21 -0000
@@ -6382,7 +6382,7 @@
 
 @deftypefun pdf_bool_t pdf_fsys_item_p (pdf_fsys_t @var{filesystem}, 
pdf_text_t @var{path_name})
 
-Determinate if a given item, identified by a path name, exist in a given
+Determine if a given item, identified by a path name, exists in a given
 filesystem.
 
 @table @strong
@@ -6395,21 +6395,22 @@
 A PDF boolean value:
 @table @code
 @item PDF_TRUE
-The specified item exist in the filesystem.
+The specified item exists in the filesystem.
 @item PDF_FALSE
-The specified item do not exist in the filesystem or the client do not
+The specified item does not exist in the filesystem or the client does not
 have enough permissions to be able to read it.
 @end table
 @item Usage example
 @example
-XXX
+pdf_text_t path = <some path>
+pdf_bool_t ret = pdf_fsys_disk_item_p (path);
 @end example
 @end table
 @end deftypefun
 
 @deftypefun pdf_bool_t pdf_fsys_item_readable_p (pdf_fsys_t @var{filesystem}, 
pdf_text_t @var{path_name})
 
-Determinate if a given filesystem item, identified by a path name, is
+Determine if a given filesystem item, identified by a path name, is
 readable.
 
 @table @strong
@@ -6437,7 +6438,7 @@
 
 @deftypefun pdf_bool_t pdf_fsys_item_writable_p (pdf_fsys_t @var{filesystem}, 
pdf_text_t @var{path_name})
 
-Determinate if a given filesystem item, identified by a path name, is
+Determine if a given filesystem item, identified by a path name, is
 writable. 
 
 @table @strong
@@ -7209,7 +7210,7 @@
 
 @deftp {Data Type} {pdf_bool_t (*pdf_fsys_item_p_fn_t) (pdf_text_t 
@var{path_name})}
 
-Filesystem callback used to determinate whether a given item,
+Filesystem callback used to determine whether a given item,
 identified by a path name, exist in a given filesystem.
 
 This callback is called by the @code{pdf_fsys_item_p} file system
@@ -7218,7 +7219,7 @@
 
 @deftp {Data Type} {pdf_bool_t (*pdf_fsys_item_readable_p_fn_t) (pdf_text_t 
@var{path_name})}
 
-Filesystem callback used to determinate whether a given filesystem
+Filesystem callback used to determine whether a given filesystem
 item, identified by a path name, is readable.
 
 This callback is called by the @code{pdf_fsys_item_readable_p}
@@ -7227,7 +7228,7 @@
 
 @deftp {Data Type} {pdf_bool_t (*pdf_fsys_item_writable_p_fn_t) (pdf_fsys_t 
@var{filename}, pdf_text_t @var{path_name})}
 
-Filesystem callback used to determinate whether a given filesystem
+Filesystem callback used to determine whether a given filesystem
 item, identified by a path name, is writeable.
 
 This callback is called by the @code{pdf_fsys_item_writeable_p} file

reply via email to

[Prev in Thread] Current Thread [Next in Thread]