summaryrefslogtreecommitdiff
path: root/gtk/gtktextview.c
diff options
context:
space:
mode:
authorBjörn Daase <bjoern@daase.net>2020-08-21 14:41:13 +0200
committerBjörn Daase <bjoern@daase.net>2020-08-21 15:29:34 +0200
commit6315cd977c2541f6f76cc81dfd47fc228bb3aa5e (patch)
tree29556ecd7c9ed1ad2342b5dd2546270a70f857d0 /gtk/gtktextview.c
parentbb8c818ba14ffde882f31359e09efd6e9215c593 (diff)
downloadgtk+-6315cd977c2541f6f76cc81dfd47fc228bb3aa5e.tar.gz
*: Fix spelling mistakes found by codespell
Diffstat (limited to 'gtk/gtktextview.c')
-rw-r--r--gtk/gtktextview.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtktextview.c b/gtk/gtktextview.c
index 53fe1dfd1a..13938c4cb6 100644
--- a/gtk/gtktextview.c
+++ b/gtk/gtktextview.c
@@ -2510,7 +2510,7 @@ _gtk_text_view_scroll_to_iter (GtkTextView *text_view,
* we're doing center alignment we align the center of the
* character.
*
- * The differents cases handle on each direction:
+ * The different cases handle on each direction:
* 1. cursor outside of the inner area define by within_margin
* 2. if use_align == TRUE, alignment with xalign and yalign
* 3. scrolling on the edges dependent of with_border
@@ -7425,7 +7425,7 @@ gtk_text_view_start_selection_drag (GtkTextView *text_view,
gtk_text_iter_order (&old_start, &old_end);
/* move the front cursor, if the mouse is in front of the selection. Should the
- * cursor however be inside the selection (this happens on tripple click) then we
+ * cursor however be inside the selection (this happens on triple click) then we
* move the side which was last moved (current insert mark) */
if (gtk_text_iter_compare (&cursor, &old_start) <= 0 ||
(gtk_text_iter_compare (&cursor, &old_end) < 0 &&
@@ -9241,7 +9241,7 @@ ensure_child (GtkTextView *text_view,
*
* Adds @child at a fixed coordinate in the #GtkTextView's text window. The
* @xpos and @ypos must be in buffer coordinates (see
- * gtk_text_view_get_iter_location() to conver to buffer coordinates).
+ * gtk_text_view_get_iter_location() to convert to buffer coordinates).
*
* @child will scroll with the text view.
*