summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2008-06-01 13:08:20 +0200
committerJim Meyering <meyering@redhat.com>2008-06-01 13:25:57 +0200
commit423f28be77373be10a96aa76855e1076f752a6b3 (patch)
treeceb41bbaac06ef728bc13295c38da2ac7ca55a83
parentdd3612a12bef28f0972bff1f9fe432725aa8abab (diff)
downloadcoreutils-423f28be77373be10a96aa76855e1076f752a6b3.tar.xz
src/base64.c: Improve comments.
-rw-r--r--src/base64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base64.c b/src/base64.c
index c9e50cf5c..a3a73451e 100644
--- a/src/base64.c
+++ b/src/base64.c
@@ -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;