From: Sergey Matveev Date: Sat, 2 Jun 2018 14:26:42 +0000 (+0300) Subject: Typo in command line help X-Git-Tag: 3.2^2~5 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=44c8061929e7a88f666b63a2a7a32bce0300a09a;p=nncp.git Typo in command line help --- diff --git a/doc/cmds.texi b/doc/cmds.texi index 7d05bf2..33ad949 100644 --- a/doc/cmds.texi +++ b/doc/cmds.texi @@ -87,7 +87,7 @@ spool if everything is good. So it is advisable to recheck your streams: % dd if=/dev/cd0 bs=2048 | nncp-bundle -rx -delete @end verbatim -@option{-dryrun} option prevents any writing to the spool. This is +@option{-dryrun} option prevents any writes to the spool. This is useful when you need to see what packets will pass by and possibly check their integrity. diff --git a/src/cypherpunks.ru/nncp/cmd/nncp-bundle/main.go b/src/cypherpunks.ru/nncp/cmd/nncp-bundle/main.go index 3b754bc..2114dae 100644 --- a/src/cypherpunks.ru/nncp/cmd/nncp-bundle/main.go +++ b/src/cypherpunks.ru/nncp/cmd/nncp-bundle/main.go @@ -60,7 +60,7 @@ func main() { doTx = flag.Bool("tx", false, "Transfer packets") doDelete = flag.Bool("delete", false, "Delete transferred packets") doCheck = flag.Bool("check", false, "Check integrity while receiving") - dryRun = flag.Bool("dryrun", false, "Do not writings") + dryRun = flag.Bool("dryrun", false, "Do no writes") spoolPath = flag.String("spool", "", "Override path to spool") logPath = flag.String("log", "", "Override path to logfile") quiet = flag.Bool("quiet", false, "Print only errors")