random small size optimizations
diff --git a/libbb/read.c b/libbb/read.c
index 50e0354..861828d 100644
--- a/libbb/read.c
+++ b/libbb/read.c
@@ -88,7 +88,7 @@
 		*p++ = '\0';
 		// avoid incorrect (unsigned) widening
 		offset = (off_t)(p-buffer) - (off_t)size;
-		// set fd position the right after the \n
+		// set fd position right after '\n'
 		if (offset && lseek(fd, offset, SEEK_CUR) == (off_t)-1)
 			return NULL;
 	}