diff --git a/src/nano.c b/src/nano.c
index 2e9f84448cba3e600611b1c64a305526f48e94d5..5ffad64bb63a8151950efb1e5ba1639c19bcce06 100644
--- a/src/nano.c
+++ b/src/nano.c
@@ -49,8 +49,8 @@ static struct termios oldterm;
 static struct sigaction act;
 	/* For all our fun signal handlers. */
 
-/* Create a new filestruct node.  Note that we specifically do not set
- * prevnode->next equal to the new line. */
+/* Create a new filestruct node.  Note that we do not set prevnode->next
+ * to the new line. */
 filestruct *make_new_node(filestruct *prevnode)
 {
     filestruct *newnode = (filestruct *)nmalloc(sizeof(filestruct));