diff options
author | Rob Landley <rob@landley.net> | 2012-12-16 15:27:33 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-12-16 15:27:33 -0600 |
commit | 28eeadd37b196486f5401d447266790f84364732 (patch) | |
tree | f75904a5e6e3a604b1364f23962a2f047f47fdf0 | |
parent | 91d7014d90cac3f1841d89c9fc005e323220f3da (diff) | |
download | toybox-28eeadd37b196486f5401d447266790f84364732.tar.gz |
Missing letter in help text.
-rw-r--r-- | toys/posix/ln.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/ln.c b/toys/posix/ln.c index bde77269..fea6fff2 100644 --- a/toys/posix/ln.c +++ b/toys/posix/ln.c @@ -10,7 +10,7 @@ config LN bool "ln" default y help - usage: ln [-sf] [FROM...] TO + usage: ln [-sfn] [FROM...] TO Create a link between FROM and TO. With only one argument, create link in current directory. |