diff options
author | William Jon McCann <jmccann@redhat.com> | 2012-08-26 22:52:08 +0800 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2012-08-26 22:54:55 +0800 |
commit | b3a65248f5747e0d9fbb480d011318d13ddb099b (patch) | |
tree | a84625499654be31bb5d93e33321d447cea91897 /gtk/gtkeditable.c | |
parent | 45cc254431bd6a448bd8e2d6d7cfe60ba9b71dd3 (diff) | |
download | gtk+-b3a65248f5747e0d9fbb480d011318d13ddb099b.tar.gz |
Fix a typo in the the comments
https://bugzilla.gnome.org/show_bug.cgi?id=682724
Diffstat (limited to 'gtk/gtkeditable.c')
-rw-r--r-- | gtk/gtkeditable.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkeditable.c b/gtk/gtkeditable.c index 616d234464..43dfd45564 100644 --- a/gtk/gtkeditable.c +++ b/gtk/gtkeditable.c @@ -222,7 +222,7 @@ gtk_editable_insert_text (GtkEditable *editable, * * Deletes a sequence of characters. The characters that are deleted are * those characters at positions from @start_pos up to, but not including - * @end_pos. If @end_pos is negative, then the the characters deleted + * @end_pos. If @end_pos is negative, then the characters deleted * are those from @start_pos to the end of the text. * * Note that the positions are specified in characters, not bytes. @@ -247,7 +247,7 @@ gtk_editable_delete_text (GtkEditable *editable, * * Retrieves a sequence of characters. The characters that are retrieved * are those characters at positions from @start_pos up to, but not - * including @end_pos. If @end_pos is negative, then the the characters + * including @end_pos. If @end_pos is negative, then the characters * retrieved are those characters from @start_pos to the end of the text. * * Note that positions are specified in characters, not bytes. @@ -367,7 +367,7 @@ gtk_editable_delete_selection (GtkEditable *editable) * * Selects a region of text. The characters that are selected are * those characters at positions from @start_pos up to, but not - * including @end_pos. If @end_pos is negative, then the the + * including @end_pos. If @end_pos is negative, then the * characters selected are those characters from @start_pos to * the end of the text. * |