]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
src/base64.c: Improve comments.
authorSimon Josefsson <simon@josefsson.org>
Sun, 1 Jun 2008 11:08:20 +0000 (13:08 +0200)
committerJim Meyering <meyering@redhat.com>
Sun, 1 Jun 2008 11:25:57 +0000 (13:25 +0200)
src/base64.c

index c9e50cf5c17f3610dad5e5bf7e851ffa1d51ac3e..a3a73451e62488465a908504c1d7fe297a86e130 100644 (file)
@@ -240,9 +240,9 @@ main (int argc, char **argv)
   FILE *input_fh;
   const char *infile;
 
-  /* True if --decode has bene given and we should decode data. */
+  /* True if --decode has been given and we should decode data. */
   bool decode = false;
-  /* True if we should ignore non-alphabetic characters. */
+  /* True if we should ignore non-base64-alphabetic characters. */
   bool ignore_garbage = false;
   /* Wrap encoded base64 data around the 76:th column, by default. */
   uintmax_t wrap_column = 76;