summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-08-19 11:09:03 +0000
committerJim Meyering <jim@meyering.net>2000-08-19 11:09:03 +0000
commit5d0d80fc276d6683bd81f583af48bc9ab581d477 (patch)
tree528bdbe93ee620aa003c501a162eb6d20d66fdc4 /src
parentc055d358694d342c880d4b9b4aa49c78a7d38b2f (diff)
downloadcoreutils-5d0d80fc276d6683bd81f583af48bc9ab581d477.tar.xz
fix my grammar error in last change
Diffstat (limited to 'src')
-rw-r--r--src/comm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/comm.c b/src/comm.c
index a7edefbe7..28e9655a2 100644
--- a/src/comm.c
+++ b/src/comm.c
@@ -108,7 +108,7 @@ writeline (const struct linebuffer *line, FILE *stream, int class)
case 2:
if (!only_file_2)
return;
- /* Print a TAB if we printing lines from file 1. */
+ /* Print a TAB if we are printing lines from file 1. */
if (only_file_1)
putc ('\t', stream);
break;
@@ -116,10 +116,10 @@ writeline (const struct linebuffer *line, FILE *stream, int class)
case 3:
if (!both)
return;
- /* Print a TAB if we printing lines from file 1. */
+ /* Print a TAB if we are printing lines from file 1. */
if (only_file_1)
putc ('\t', stream);
- /* Print a TAB if we printing lines from file 2. */
+ /* Print a TAB if we are printing lines from file 2. */
if (only_file_2)
putc ('\t', stream);
break;