[gexiv2] Fix documentation typos
- From: Jens Georg <jensgeorg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gexiv2] Fix documentation typos
- Date: Wed, 21 Jun 2017 17:29:52 +0000 (UTC)
commit d18f7e642b2f46fddeaf55c7a9063f731bc862c8
Author: Jason Crain <jason inspiresomeone us>
Date: Wed Jun 21 09:56:19 2017 -0500
Fix documentation typos
https://bugzilla.gnome.org/show_bug.cgi?id=784045
gexiv2/gexiv2-managed-stream.h | 20 ++++++++++----------
gexiv2/gexiv2-metadata.h | 26 +++++++++++++-------------
2 files changed, 23 insertions(+), 23 deletions(-)
---
diff --git a/gexiv2/gexiv2-managed-stream.h b/gexiv2/gexiv2-managed-stream.h
index a7ef43c..95de5a1 100644
--- a/gexiv2/gexiv2-managed-stream.h
+++ b/gexiv2/gexiv2-managed-stream.h
@@ -25,7 +25,7 @@ typedef enum {
/**
* Stream_CanSeek:
- * @handle: Opaque storage for the native handle this function wil operate on
+ * @handle: Opaque storage for the native handle this function will operate on
*
* Function that returns the seekability of the stream
*
@@ -35,7 +35,7 @@ typedef gboolean (*Stream_CanSeek) (void *handle);
/**
* Stream_CanRead:
- * @handle: Opaque storage for the native handle this function wil operate on
+ * @handle: Opaque storage for the native handle this function will operate on
*
* Function that returns the readability of the stream
*
@@ -45,7 +45,7 @@ typedef gboolean (*Stream_CanRead) (void *handle);
/**
* Stream_CanWrite:
- * @handle: Opaque storage for the native handle this function wil operate on
+ * @handle: Opaque storage for the native handle this function will operate on
*
* Function that returns the readability of the stream
*
@@ -55,7 +55,7 @@ typedef gboolean (*Stream_CanWrite) (void *handle);
/**
* Stream_Length:
- * @handle: Opaque storage for the native handle this function wil operate on
+ * @handle: Opaque storage for the native handle this function will operate on
*
* Function to query the length of the stream
*
@@ -65,7 +65,7 @@ typedef gint64 (*Stream_Length) (void *handle);
/**
* Stream_Position:
- * @handle: Opaque storage for the native handle this function wil operate on
+ * @handle: Opaque storage for the native handle this function will operate on
*
* Function to query the current position in the stream
*
@@ -75,7 +75,7 @@ typedef gint64 (*Stream_Position) (void *handle);
/**
* Stream_Read:
- * @handle: Opaque storage for the native handle this function wil operate on
+ * @handle: Opaque storage for the native handle this function will operate on
* @buffer: Destination data to read into
* @offset: Offset in @buffer where data should be written to
* @count: Number of bytes to read
@@ -88,7 +88,7 @@ typedef gint32 (*Stream_Read) (void *handle, void *buffer, gint32 offset,
/**
* Stream_Write:
- * @handle: Opaque storage for the native handle this function wil operate on
+ * @handle: Opaque storage for the native handle this function will operate on
* @buffer: Source data to put into the stream
* @offset: Offset in @buffer where data should be read from
* @count: Number of bytes to write
@@ -101,9 +101,9 @@ typedef void (*Stream_Write) (void *handle, void *buffer, gint32 offset,
/**
* Stream_Seek:
- * @handle: Opaque storage for the native handle this function wil operate on
+ * @handle: Opaque storage for the native handle this function will operate on
* @offset: Position in the stream, relative to @origin
- * @origin: Determintes meaning of offset, being relative to current posision, start or end of the stream.
+ * @origin: Determines meaning of offset, being relative to current position, start or end of the stream.
*
* Change the read or write position in the current stream
*/
@@ -111,7 +111,7 @@ typedef void (*Stream_Seek) (void *handle, gint64 offset, WrapperSeekOri
/**
* Stream_Flush:
- * @handle: Opaque storage for the native handle this function wil operate on
+ * @handle: Opaque storage for the native handle this function will operate on
*
* Schedule writing buffered data to the stream's real storage.
*/
diff --git a/gexiv2/gexiv2-metadata.h b/gexiv2/gexiv2-metadata.h
index aafc3bb..4a9a295 100644
--- a/gexiv2/gexiv2-metadata.h
+++ b/gexiv2/gexiv2-metadata.h
@@ -23,7 +23,7 @@
*
* #GExiv2Metadata is a generic object that provides everything from simple
* aggregated accessors to common data such as image comments up to
- * fine-grained access to specifig tags of a specific format, be it EXIF, IPTC
+ * fine-grained access to specific tags of a specific format, be it EXIF, IPTC
* or XMP
*/
@@ -42,7 +42,7 @@
* to be fetched.
* <informalexample><programlisting>
* GExiv2PreviewProperties **properties, **it;
- * properts = it = gexiv2_metadata_get_preview_properties(metadata);
+ * properties = it = gexiv2_metadata_get_preview_properties(metadata);
*
* while (*it) {
* preview_image = gexiv2_metadata_get_preview_image(metadata, *it);
@@ -58,7 +58,7 @@
*
* Metadata can contain multiple preview images. #GExiv2PreviewProperties are
* used to describe the available image without the need of fetching the whole
- * image from the metadta.
+ * image from the metadata.
*/
G_BEGIN_DECLS
@@ -162,7 +162,7 @@ typedef enum { /*< flags >*/
*
* An object holding all the Exiv2 metadata. Previews, if present, are also available.
*
- * As gexiv2 is only a wrapper around Exiv2, it's better to read its documentaiton to understand
+ * As gexiv2 is only a wrapper around Exiv2, it's better to read its documentation to understand
* the full scope of what it offers: <ulink url="http://www.exiv2.org/"></ulink>
*
* In particular, rather than providing a getter/setter method pair for every metadata value
@@ -403,7 +403,7 @@ const gchar* gexiv2_metadata_get_tag_type (const gchar *tag);
* gexiv2_metadata_get_supports_exif:
* @self: An instance of #GExiv2Metadata
*
- * Query @self whehter it suports writing EXIF metadata.
+ * Query @self whether it supports writing EXIF metadata.
*
* Returns: %TRUE if the loaded image type supports writing EXIF metadata.
*/
@@ -608,7 +608,7 @@ gchar** gexiv2_metadata_get_exif_tags (GExiv2Metadata
*self);
* @nom: (out): The numerator
* @den: (out): The denominator
*
- * Fetch EXIF @tag represented by a fraction. @nom will contian the numerator,
+ * Fetch EXIF @tag represented by a fraction. @nom will contain the numerator,
* @den the denominator of the fraction on successful return.
*
* Returns: (skip): Boolean success value
@@ -819,7 +819,7 @@ gint gexiv2_metadata_get_metadata_pixel_height (GExiv2Metadata *self);
/**
* gexiv2_metadata_set_metadata_pixel_width:
* @self: An instance of #GExiv2Metadata
- * @width: The width of the image as it should be put into the metadta.
+ * @width: The width of the image as it should be put into the metadata.
*
* Composite setter to update the image's metadata with @width
*/
@@ -828,7 +828,7 @@ void gexiv2_metadata_set_metadata_pixel_width (GExiv2Metadata *self, gint width)
/**
* gexiv2_metadata_set_metadata_pixel_height:
* @self: An instance of #GExiv2Metadata
- * @height: The width of the image as it should be put into the metadta.
+ * @height: The width of the image as it should be put into the metadata.
*
* Update the image's metadata with @height
*/
@@ -857,7 +857,7 @@ void gexiv2_metadata_set_metadata_pixel_height (GExiv2Metadata *self, gint heigh
* two-byte character codes for encoding. However, it's still used here for legacy reasons.
* </note>
*
- * For fine-grained control, it's recommened to use Exiv2 tags directly rather than this method,
+ * For fine-grained control, it's recommended to use Exiv2 tags directly rather than this method,
* which is more useful for quick or casual use.
*
* Returns: (transfer full) (allow-none): The photo's comment field.
@@ -879,7 +879,7 @@ void gexiv2_metadata_set_comment
(GExiv2Metadata *self, const gchar* comment
* @self: An instance of #GExiv2Metadata
*
* This is a composite clear method that will clear a number of fields. See
- * #gexiv2_metadata_get_comment for more informtion.
+ * #gexiv2_metadata_get_comment for more information.
*/
void gexiv2_metadata_clear_comment (GExiv2Metadata *self);
@@ -957,7 +957,7 @@ gboolean gexiv2_metadata_get_gps_latitude
(GExiv2Metadata *self, gdouble *lat
* @self: An instance of #GExiv2Metadata
* @altitude: (out): Variable to store the altitude value
*
- * Convenience functon to query the altitude stored in the GPS tags of the
+ * Convenience function to query the altitude stored in the GPS tags of the
* image
*
* Returns: (skip): Boolean success value
@@ -971,7 +971,7 @@ gboolean gexiv2_metadata_get_gps_altitude
(GExiv2Metadata *self, gdouble *alt
* @latitude: (out): Storage for latitude value
* @altitude: (out): Storage for altitude value
*
- * Convenience functon to query all available GPS information at once.
+ * Convenience function to query all available GPS information at once.
*
* Returns: (skip): Boolean success value.
*/
@@ -984,7 +984,7 @@ gboolean gexiv2_metadata_get_gps_info
(GExiv2Metadata *self, gdouble *longit
* @latitude: Latitude value to set or replace current value
* @altitude: Altitude value to set or replace current value
*
- * Convenience functon to query all available GPS information at once.
+ * Convenience function to query all available GPS information at once.
*
* Returns: (skip): Boolean success value.
*/
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]