1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-29 03:50:45 +02:00

fix my grammar error in last change

This commit is contained in:
Jim Meyering
2000-08-19 11:09:03 +00:00
parent c055d35869
commit 5d0d80fc27
+3 -3
View File
@@ -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;