diff options
author | Elliott Hughes <enh@google.com> | 2020-03-12 18:18:06 -0700 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-03-13 00:52:32 -0500 |
commit | 0fe9185c669b95ae58cfce6373348e2d9a7e1cfa (patch) | |
tree | b941867a5c42358b263b1df8fe558b37a652628a /toys/posix | |
parent | f1142e5b6d86eb918bd0176b28544e6110bc9e2f (diff) | |
download | toybox-0fe9185c669b95ae58cfce6373348e2d9a7e1cfa.tar.gz |
Fix various typos.
In case I'm not yet in the running for the most pedantic change of this
release, I think the "days of the week are written with initial capitals
in English" subset of this patch is a strong contender.
(Found via `toybox help -a | ispell -l | sort | uniq`.)
Diffstat (limited to 'toys/posix')
-rw-r--r-- | toys/posix/date.c | 4 | ||||
-rw-r--r-- | toys/posix/tar.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/toys/posix/date.c b/toys/posix/date.c index 75408cab..7fe0388d 100644 --- a/toys/posix/date.c +++ b/toys/posix/date.c @@ -43,8 +43,8 @@ config DATE %j day of year (001-366) %d day of month (01-31) %e day of month ( 1-31) %N nanosec (output only) - %U Week of year (0-53 start sunday) %W Week of year (0-53 start monday) - %V Week of year (1-53 start monday, week < 4 days not part of this year) + %U Week of year (0-53 start Sunday) %W Week of year (0-53 start Monday) + %V Week of year (1-53 start Monday, week < 4 days not part of this year) %F "%Y-%m-%d" %R "%H:%M" %T "%H:%M:%S" %z numeric timezone %D "%m/%d/%y" %r "%I:%M:%S %p" %h "%b" %s unix epoch time diff --git a/toys/posix/tar.c b/toys/posix/tar.c index 1ac9400a..87e88f65 100644 --- a/toys/posix/tar.c +++ b/toys/posix/tar.c @@ -38,7 +38,7 @@ config TAR --mode MODE Adjust modes --mtime TIME Override timestamps --owner NAME Set file owner to NAME --group NAME Set file group to NAME --sparse Record sparse files - --restrict All archive contents must extract under one subdirctory + --restrict All archive contents must extract under one subdirectory --numeric-owner Save/use/display uid and gid, not user/group name --no-recursion Don't store directory contents */ |