From: Jim Meyering Date: Sat, 19 Aug 2000 11:09:03 +0000 (+0000) Subject: fix my grammar error in last change X-Git-Tag: FILEUTILS-4_0y~18 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=5d0d80fc276d6683bd81f583af48bc9ab581d477;p=thirdparty%2Fcoreutils.git fix my grammar error in last change --- diff --git a/src/comm.c b/src/comm.c index a7edefbe72..28e9655a2e 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;