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 c9e50cf..a3a7345 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;