Mostly editorial. Please apply.

Brad
# Bazaar merge directive format 2 (Bazaar 0.90)
# revision_id: [email protected]\
#   k500wrxphi8b7sqj
# target_branch: http://bzr.savannah.gnu.org/r/pdf/libgnupdf/branches\
#   /trunk/
# testament_sha1: b3f15b0e10e8b61ca82afc16e899a3c082c4c2de
# timestamp: 2009-06-17 14:20:53 +1000
# base_revision_id: [email protected]\
#   5t82q3rjmahrne3j
# 
# Begin patch
=== modified file 'ChangeLog'
--- ChangeLog	2009-06-17 00:04:53 +0000
+++ ChangeLog	2009-06-17 03:57:06 +0000
@@ -1,5 +1,7 @@
 2009-06-17  Brad Hards  <[email protected]>
 
+	* doc/gnupdf.texi: various typo fixes 
+
 	* doc/gnupdf-hg.texi (Running the unit tests): document use of
 	the CK_VERBOSITY environment variable.
 	Minor other doco fixes.

=== modified file 'doc/gnupdf.texi'
--- doc/gnupdf.texi	2009-06-16 20:22:17 +0000
+++ doc/gnupdf.texi	2009-06-17 03:57:06 +0000
@@ -94,11 +94,11 @@
 @node Base Layer Overview
 @section Overview
 
-The base layer of the GNU PDF Library provide system-independent
+The base layer of the GNU PDF Library provides system-independent
 access to several facilities.
 
 The implemented facilities are organized into modules. Each module
-export an API to be used by the client application or other layers of
+exports an API to be used by the client application or other layers of
 the library. Some modules make use of the facilities implemented in
 other modules (such as allocation or error functions).
 
@@ -126,7 +126,7 @@
 operation.
 @end deftp
 
-The following constants defines the valid values to be hold in a
+The following constants define the valid values to be held in a
 @code{pdf_status_t} variable:
 
 @deftp {Constant} PDF_OK
@@ -269,7 +269,7 @@
 @end table
 
 
-Indeed, this module provides a assert macro for each layer.
+In addition, this module provides a assert macro for each layer.
 
 @defmac PDF_ASSERT_BASE (condition)
 @end defmac
@@ -391,7 +391,7 @@
 allocated memory then the previous contents of the allocated memory
 remains. The contents of newly allocated memory are undetermined.
 
-If there is not enough available memory to satisfy the petition a
+If there is not enough available memory to satisfy the request, then a
 fatal error is signaled killing the current process. An error status
 is returned to the operating system.
 @end table
@@ -439,7 +439,7 @@
 A boolean value.
 @end deftp
 
-The following constants defines the valid values to be hold in a
+The following constants define the valid values to be held in a
 @code{pdf_bool_t} variable:
 
 @deftp {Constant} PDF_TRUE
@@ -461,8 +461,7 @@
 Unsigned 32 bits integer.
 @end deftp
 
-The following constants are defined in order to define the valid value
-ranges for these data types:
+The following constants specify the valid ranges for these data types:
 
 @deftp {Constant} PDF_I32_MAX
 Maximum value able to be stored in a @code{pdf_i32_t} variable.
@@ -483,11 +482,11 @@
 @node Big Numbers
 @subsection Big Numbers
 
-An implementation of Big numbers (64 bit) is also provided. These
-bignums can be used in machines not providing true 64 bit integers.
+An implementation of big numbers (64 bit) is also provided. This data type
+can be used in machines not providing true 64 bit integers.
 
 @deftp {Data Type} pdf_i64_t
-A variable of type pdf_i64_t is capabable of representing 64 bit signed integers.
+A variable of type pdf_i64_t is capable of representing a 64 bit signed integer.
 @end deftp
 
 @deftypefun pdf_i64_t  pdf_i64_new (const pdf_i32_t @var{high}, const pdf_u32_t @var{low})
@@ -515,14 +514,14 @@
 
 @deftypefun void pdf_i64_assign (pdf_i64_t *...@var{bignum}, const pdf_i32_t @var{high}, const pdf_u32_t @var{low}, pdf_status_t *...@var{p_status})
 
-Assign a value coming from one 32 bit signed integer and a 32 bit
-unsigned integer to a  i64 integer.
+Assign a value based on a 32 bit signed integer and a 32 bit
+unsigned integer to a 64 bit integer.
 
 @table @strong
 @item Parameters
 @table @var
 @item bignum
-Variable that stores 64 bit integer
+Variable that stores a 64 bit integer
 @item high
 The high (signed) part of the 64 bit integer.
 @item low
@@ -556,11 +555,11 @@
 
 @deftypefun void pdf_i64_assign_quick (pdf_i64_t *...@var{bignum}, const pdf_i32_t @var{value}, pdf_status_t *...@var{p_status})
 
-Assign a value coming from one 32 bit signed integer to a i64 integer.
+Assign a value coming from one 32 bit signed integer to a 64 bit signed integer.
 
-Note that if the client is in a system supporting true 64bit scalar
+Note that if the client is in a system supporting true 64 bit scalar
 types, @code{pdf_i64_assign_quick} will be a macro that will also
-accept a 64bits value.
+accept a 64 bit value.
 
 @table @strong
 @item Parameters
@@ -622,7 +621,7 @@
 pdf_i64_t *copy;
 pdf_status_t *p_status;
 orig = pdf_i64_new(0, 10);
-pdf_i64_copy(orig, copy,p_status)
+pdf_i64_copy(orig, copy, p_status)
 if ( *p_status != PDF_OK) /*Now copy is also 10*/
 @{
    /* Error code */
@@ -761,7 +760,7 @@
 
 @deftypefun void pdf_i64_subtraction_i32_min (pdf_i64_t *...@var{dest}, const pdf_i32_t @var{minuend}, const pdf_i64_t @var{subtrahend}, pdf_status_t *...@var{p_status})
 
-Finds the difference between a 32bit number and a 64bit number
+Finds the difference between a 32 bit number and a 64 bit number
 
 @table @strong
 @item Parameters
@@ -791,7 +790,7 @@
 subtrahend = pdf_i64_new(0, 35);
 result = pdf_i64_new(0, 0);
 dest = &result;
-pdf_i64_subtraction (dest, 25, subtrahend,p_status)
+pdf_i64_subtraction (dest, 25, subtrahend, p_status)
 if (*p_status != PDF_OK) /* Now dest is -10 */
 @{
   /* Error code */
@@ -803,7 +802,7 @@
 
 @deftypefun void pdf_i64_subtraction_i32_sub (pdf_i64_t *...@var{dest}, const pdf_i64_t @var{minuend}, const pdf_i32_t @var{subtrahend}, pdf_status_t *...@var{p_status})
 
-Finds the difference between a 64bit number and a 32bit number
+Finds the difference between a 64 bit number and a 32 bit number
 
 @table @strong
 @item Parameters
@@ -833,7 +832,7 @@
 minuend = pdf_i64_new(0, 25);
 result = pdf_i64_new(0, 0);
 dest = &result;
-pdf_i64_subtraction (dest, minuend, 35,p_status);
+pdf_i64_subtraction (dest, minuend, 35, p_status);
 if ( != PDF_OK) /* Now dest is -10 */
 @{
   /* Error code */
@@ -888,7 +887,7 @@
 
 @deftypefun void pdf_i64_mult_i32 (pdf_i64_t *...@var{dest}, const pdf_i64_t @var{factor_1}, const pdf_i32_t @var{factor_2}, pdf_status_t *...@var{p_status})
 
-Multiplication of a 64bit number and a 32bit number
+Multiplication of a 64 bit number and a 32 bit number
 
 @table @strong
 @item Parameters
@@ -1085,7 +1084,7 @@
 
 @deftypefun void pdf_i64_mod_i32_dividend (pdf_i64_t *...@var{dest}, const pdf_i32_t @var{dividend}, const pdf_i64_t @var{divisor}, pdf_status_t *...@var{p_status})
 
-Returns the remainder of the division between a 32bit number and a 64bit number
+Returns the remainder of the division between a 32 bit number and a 64 bit number
 
 @table @strong
 @item Parameters
@@ -1126,7 +1125,7 @@
 
 @deftypefun void pdf_i64_mod_i32_divisor (pdf_i64_t *...@var{dest}, const pdf_i64_t @var{dividend}, const pdf_i32_t @var{divisor}, pdf_status_t *...@var{p_status})
 
-Returns the remainder of the division between a 64bit number and a 32bit number
+Returns the remainder of the division between a 64 bit number and a 32 bit number
 
 @table @strong
 @item Parameters
@@ -1243,7 +1242,7 @@
 
 @deftypefun int pdf_i64_cmp_i32 (const pdf_i64_t @var{number_1}, const pdf_i32_t @var{number_2})
 
-Compares a 64bit number and a 32bit number
+Compares a 64 bit number and a 32 bit number
 
 @table @strong
 @item Parameters
@@ -1315,7 +1314,7 @@
 
 @deftypefun pdf_i32_t pdf_i64_to_i32 (const pdf_i64_t @var{bignum})
 
-Converts a pdf_i64_t to a 32bit value. If number can't be represented in 32 bits
+Converts a pdf_i64_t to a 32 bit value. If number can't be represented in 32 bits
 the result is undefined, so should be used with caution.
 
 @table @strong
@@ -6987,7 +6986,7 @@
 
 mytime = pdf_time_new ();
 
-pdf_time_set_from_i32(mytime, 1217009657);
+pdf_time_set_from_u32(mytime, 1217009657);
 
 @end example
 @end table

# Begin bundle
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
ifHhgqeBj7XbUS/qJiePvT/xdyRThQkER1yNUA==

Reply via email to