[libgrss] Fixed replicated typo in documentation
- From: Roberto Guido <rguido src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libgrss] Fixed replicated typo in documentation
- Date: Fri, 25 Apr 2014 00:39:18 +0000 (UTC)
commit 6bbdd6788805d9a117a9d2a1e2750815f05ca5c3
Author: Roberto Guido <rguido src gnome org>
Date: Mon Apr 21 23:32:22 2014 +0200
Fixed replicated typo in documentation
src/feed-channel.c | 14 +++++++-------
src/feed-enclosure.c | 4 ++--
src/feeds-pool.c | 2 +-
src/feeds-publisher.c | 6 +++---
4 files changed, 13 insertions(+), 13 deletions(-)
---
diff --git a/src/feed-channel.c b/src/feed-channel.c
index 0ca778f..60dae27 100644
--- a/src/feed-channel.c
+++ b/src/feed-channel.c
@@ -167,7 +167,7 @@ grss_feed_channel_new_with_source (gchar *source)
/**
* grss_feed_channel_new_from_xml:
* @doc: an XML document previously parsed with libxml2.
- * @error: if an error occourred, %NULL is returned and this is filled with the
+ * @error: if an error occurred, %NULL is returned and this is filled with the
* message.
*
* Allocates a new #GrssFeedChannel and init it with contents found in specified
@@ -197,7 +197,7 @@ grss_feed_channel_new_from_xml (xmlDocPtr doc, GError **error)
/**
* grss_feed_channel_new_from_memory:
* @data: string to parse.
- * @error: if an error occourred, %NULL is returned and this is filled with the
+ * @error: if an error occurred, %NULL is returned and this is filled with the
* message.
*
* Allocates a new #GrssFeedChannel and init it with contents found in specified
@@ -222,7 +222,7 @@ grss_feed_channel_new_from_memory (const gchar *data, GError **error)
/**
* grss_feed_channel_new_from_file:
* @path: path of the file to parse.
- * @error: if an error occourred, %NULL is returned and this is filled with the
+ * @error: if an error occurred, %NULL is returned and this is filled with the
* message.
*
* Allocates a new #GrssFeedChannel and init it with contents found in specified
@@ -980,7 +980,7 @@ init_soup_message (SoupMessage* msg, GrssFeedChannel *channel)
/**
* grss_feed_channel_fetch:
* @channel: a #GrssFeedChannel.
- * @error: if an error occourred, %FALSE is returned and this is filled with the
+ * @error: if an error occurred, %FALSE is returned and this is filled with the
* message.
*
* Utility to fetch and populate a #GrssFeedChannel for the first time, and init
@@ -1052,7 +1052,7 @@ feed_downloaded (SoupSession *session, SoupMessage *msg, gpointer user_data) {
* grss_feed_channel_fetch_finish:
* @channel: a #GrssFeedChannel.
* @res: the #GAsyncResult passed to the callback.
- * @error: if an error occourred, %FALSE is returned and this is filled with the
+ * @error: if an error occurred, %FALSE is returned and this is filled with the
* message.
*
* Finalizes an asyncronous operation started with
@@ -1099,7 +1099,7 @@ grss_feed_channel_fetch_async (GrssFeedChannel *channel, GAsyncReadyCallback cal
/**
* grss_feed_channel_fetch_all:
* @channel: a #GrssFeedChannel.
- * @error: if an error occourred, %NULL is returned and this is filled with the
+ * @error: if an error occurred, %NULL is returned and this is filled with the
* message.
*
* Utility to fetch and populate a #GrssFeedChannel, and retrieve all its
@@ -1214,7 +1214,7 @@ grss_feed_channel_fetch_all_async (GrssFeedChannel *channel, GAsyncReadyCallback
* grss_feed_channel_fetch_all_finish:
* @channel: a #GrssFeedChannel.
* @res: the #GAsyncResult passed to the callback.
- * @error: if an error occourred, %NULL is returned and this is filled with the
+ * @error: if an error occurred, %NULL is returned and this is filled with the
* message.
*
* Finalizes an asyncronous operation started with
diff --git a/src/feed-enclosure.c b/src/feed-enclosure.c
index 312f2b3..7a62496 100644
--- a/src/feed-enclosure.c
+++ b/src/feed-enclosure.c
@@ -188,7 +188,7 @@ msg_to_internal_file (GrssFeedEnclosure *enclosure, SoupMessage *msg, GError **e
/**
* grss_feed_enclosure_fetch:
* @enclosure: a #GrssFeedEnclosure.
- * @error: if an error occourred, %NULL is returned and this is filled with the
+ * @error: if an error occurred, %NULL is returned and this is filled with the
* message.
*
* Utility to fetch a #GrssFeedEnclosure. Contents are stored in a temporary
@@ -282,7 +282,7 @@ grss_feed_enclosure_fetch_async (GrssFeedEnclosure *enclosure, GAsyncReadyCallba
* grss_feed_enclosure_fetch_finish:
* @enclosure: a #GrssFeedEnclosure.
* @res: the #GAsyncResult passed to the callback.
- * @error: if an error occourred, %NULL is returned and this is filled with the
+ * @error: if an error occurred, %NULL is returned and this is filled with the
* message.
*
* Finalizes an asyncronous operation started with
diff --git a/src/feeds-pool.c b/src/feeds-pool.c
index 82b8b16..e15bf82 100644
--- a/src/feeds-pool.c
+++ b/src/feeds-pool.c
@@ -136,7 +136,7 @@ grss_feeds_pool_class_init (GrssFeedsPoolClass *klass)
* Emitted when a #GrssFeedChannel assigned to the @pool has been fetched
* and parsed. All parsed items are exposed in the array, with no
* regards about previously existing elements. @items may be NULL, if
- * an error occourred while fetching and/or parsing. List of @items
+ * an error occurred while fetching and/or parsing. List of @items
* is freed, and his elements are unref'd, when signal ends.
*/
signals [FEED_READY] = g_signal_new ("feed-ready", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST, 0,
diff --git a/src/feeds-publisher.c b/src/feeds-publisher.c
index 352d79a..e37bdf8 100644
--- a/src/feeds-publisher.c
+++ b/src/feeds-publisher.c
@@ -229,7 +229,7 @@ grss_feeds_publisher_new ()
* @channel: the #GrssFeedChannel to dump in the file.
* @items: (element-type GrssFeedItem): list of #GrssFeedItems to be added in
* the feed.
- * @error: if an error occourred, %NULL is returned and this is filled with the
+ * @error: if an error occurred, %NULL is returned and this is filled with the
* message.
*
* Format a #GrssFeedChannel in Atom and returns the resulting string.
@@ -496,7 +496,7 @@ feed_required_by_web_cb (SoupServer *server, SoupMessage *msg, const char *path,
* @items: (element-type GrssFeedItem): list of #GrssFeedItems to be added in
* the feed.
* @id: name used in the external URL of the feed.
- * @error: if an error occourred, %FALSE is returned and this is filled with the
+ * @error: if an error occurred, %FALSE is returned and this is filled with the
* message.
*
* If the local web server has been executed (with
@@ -533,7 +533,7 @@ grss_feeds_publisher_publish_web (GrssFeedsPublisher *pub, GrssFeedChannel *chan
* @items: (element-type GrssFeedItem): list of #GrssFeedItems to be added in
* the feed.
* @uri: URI of the file to write. The full path must exists.
- * @error: if an error occourred, %FALSE is returned and this is filled with the
+ * @error: if an error occurred, %FALSE is returned and this is filled with the
* message.
*
* Dump the given @channel in an Atom formatted file in @path. If the local
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]