diff --git a/ChangeLog b/ChangeLog
index 2458532effee8b9303d48309aa3e6ee1efafa804..6977cf25d9b42cbeafb3fa7f68df720200824fd6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -196,8 +196,9 @@ CVS code -
 - global.c:
   shortcut_init()
 	- Simplify wording of nano_gotoline_msg. (Jordi and Ken Tyler)
-	- Clarify wording of nano_wordcount_msg, as it won't go through
-	  the entire file if the mark is on. (DLR)
+	- Clarify wording of nano_wordcount_msg, as it will only go
+	  through the marked portions of the file if the mark is on.
+	  (DLR)
 - move.c:
   do_first_line(), do_last_line()
 	- Simplify by only using edit_redraw(), and also make them call
diff --git a/src/text.c b/src/text.c
index 0fc43d403c3301a0d9d2445cde217ff244499a23..9554c6e2b05288396611bbbffa7886e0d3801e41 100644
--- a/src/text.c
+++ b/src/text.c
@@ -44,7 +44,7 @@ static bool same_line_wrap = FALSE;
 #endif
 #ifndef DISABLE_JUSTIFY
 static filestruct *jusbottom = NULL;
-	/* Pointer to end of justify buffer. */
+	/* Pointer to the end of the justify buffer. */
 #endif
 
 #ifndef NANO_SMALL