[geany/geany-plugins] f88ac5: Fix multiple typos in comments

Enrico Tröger git-noreply at xxxxx
Sun Feb 7 14:55:30 UTC 2016


Branch:      refs/heads/master
Author:      Enrico Tröger <enrico.troeger at uvena.de>
Committer:   Enrico Tröger <enrico.troeger at uvena.de>
Date:        Sun, 07 Feb 2016 14:55:30 UTC
Commit:      f88ac54fcc2c12950ac50ac8b8d91d4e6bf6078b
             https://github.com/geany/geany-plugins/commit/f88ac54fcc2c12950ac50ac8b8d91d4e6bf6078b

Log Message:
-----------
Fix multiple typos in comments


Modified Paths:
--------------
    spellcheck/src/gui.c

Modified: spellcheck/src/gui.c
6 lines changed, 3 insertions(+), 3 deletions(-)
===================================================================
@@ -557,15 +557,15 @@ static void check_on_text_changed(GeanyDocument *doc, gint position, gint lines_
 	gint line_count;
 
 	/* Iterating over all lines which changed as indicated by lines_added. lines_added is 0
-	 * if only a lines has changed, in this case set it to 1. Otherwise, iterating over all
+	 * if only one line has changed, in this case set line_count to 1. Otherwise, iterating over all
 	 * new lines makes spell checking work for pasted text. */
 	line_count = MAX(1, lines_added);
 
 	line_number = sci_get_line_from_position(doc->editor->sci, position);
 	/* TODO: storing these information in the global check_line_data struct isn't that good.
-	 * The data gets overwritten when a new line is inserted and so there is a chance that thep
+	 * The data gets overwritten when a new line is inserted and so there is a chance that the
 	 * previous line is not checked to the end. One solution could be to simple maintain a list
-	 * of line numbers which needs to be checked and do this is the timeout handler. */
+	 * of line numbers which needs to be checked and do this in the timeout handler. */
 	check_line_data.doc = doc;
 	check_line_data.line_number = line_number;
 	check_line_data.line_count = line_count;



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Plugins-Commits mailing list