diff --git a/src/nano.c b/src/nano.c
index 6268773a1cc07b8dc347c76109cda46d0af37a32..c1ab42d345df2c633202fd281b3cdb37683cfdfe 100644
--- a/src/nano.c
+++ b/src/nano.c
@@ -3092,7 +3092,7 @@ void do_justify(bool full_justify)
 	    edit_refresh();
 	}
     } else {
-	/* Blow away the justify buffer.*/
+	/* Blow away the text in the justify buffer.*/
 	free_filestruct(jusbuffer);
 	jusbuffer = NULL;
     }
@@ -3265,8 +3265,8 @@ void handle_sigwinch(int s)
 	unpartition_filestruct(&filepart);
 
 #ifndef DISABLE_JUSTIFY
-    /* If the justify buffer isn't empty, blow it away and display the
-     * shortcut list with UnCut. */
+    /* If the justify buffer isn't empty, blow away the text in it and
+     * display the shortcut list with UnCut. */
     if (jusbuffer != NULL) {
 	free_filestruct(jusbuffer);
 	jusbuffer = NULL;