summaryrefslogtreecommitdiff
path: root/gtk/gtkstatusbar.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-07 13:01:26 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-02-07 13:06:10 -0500
commit7a208fbbf3d28c8b5bfeb1c612d60305ab3a235e (patch)
tree7b75aa3eebb772a7cf28f4b639f84b273fbbca62 /gtk/gtkstatusbar.c
parentf116f0071e3a0f03c973532bceee30b3221e5b3f (diff)
downloadgtk+-7a208fbbf3d28c8b5bfeb1c612d60305ab3a235e.tar.gz
docs: use proper apostrophe
https://wiki.gnome.org/Design/OS/Typography
Diffstat (limited to 'gtk/gtkstatusbar.c')
-rw-r--r--gtk/gtkstatusbar.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk/gtkstatusbar.c b/gtk/gtkstatusbar.c
index b7aba0fdb9..eeabaae018 100644
--- a/gtk/gtkstatusbar.c
+++ b/gtk/gtkstatusbar.c
@@ -50,9 +50,9 @@
* is complete in an FTP client, for example).
*
* Status bars in GTK+ maintain a stack of messages. The message at
- * the top of the each bar's stack is the one that will currently be displayed.
+ * the top of the each bar’s stack is the one that will currently be displayed.
*
- * Any messages added to a statusbar's stack must specify a
+ * Any messages added to a statusbar’s stack must specify a
* context id that is used to uniquely identify
* the source of a message. This context id can be generated by
* gtk_statusbar_get_context_id(), given a message and the statusbar that
@@ -66,7 +66,7 @@
*
* Status bars are created using gtk_statusbar_new().
*
- * Messages are added to the bar's stack with gtk_statusbar_push().
+ * Messages are added to the bar’s stack with gtk_statusbar_push().
*
* The message at the top of the stack can be removed using
* gtk_statusbar_pop(). A message can be removed from anywhere in the
@@ -304,11 +304,11 @@ gtk_statusbar_msg_free (GtkStatusbarMsg *msg)
/**
* gtk_statusbar_push:
* @statusbar: a #GtkStatusbar
- * @context_id: the message's context id, as returned by
+ * @context_id: the message’s context id, as returned by
* gtk_statusbar_get_context_id()
* @text: the message to add to the statusbar
*
- * Pushes a new message onto a statusbar's stack.
+ * Pushes a new message onto a statusbar’s stack.
*
* Returns: a message id that can be used with
* gtk_statusbar_remove().
@@ -343,7 +343,7 @@ gtk_statusbar_push (GtkStatusbar *statusbar,
* @statusbar: a #GtkStatusbar
* @context_id: a context identifier
*
- * Removes the first message in the #GtkStatusbar's stack
+ * Removes the first message in the #GtkStatusbar’s stack
* with the given context id.
*
* Note that this may not change the displayed message, if
@@ -394,7 +394,7 @@ gtk_statusbar_pop (GtkStatusbar *statusbar,
* @context_id: a context identifier
* @message_id: a message identifier, as returned by gtk_statusbar_push()
*
- * Forces the removal of a message from a statusbar's stack.
+ * Forces the removal of a message from a statusbar’s stack.
* The exact @context_id and @message_id must be specified.
*/
void