diff options
author | Zhenguo Niu <Niu.ZGlinux@gmail.com> | 2018-03-02 17:59:26 +0800 |
---|---|---|
committer | Balint Gabor <balint.g@gmail.com> | 2018-03-02 17:59:26 +0800 |
commit | d520bf45038ec8f02dd255bea038c5785f7290e0 (patch) | |
tree | 76ea455b7d5c32abc8f0e3f6bc8f9462ac96f931 | |
parent | a76e46e3d7cb77bfcbc95d92df9f4b6ccdd742f2 (diff) | |
download | dexon-d520bf45038ec8f02dd255bea038c5785f7290e0.tar dexon-d520bf45038ec8f02dd255bea038c5785f7290e0.tar.gz dexon-d520bf45038ec8f02dd255bea038c5785f7290e0.tar.bz2 dexon-d520bf45038ec8f02dd255bea038c5785f7290e0.tar.lz dexon-d520bf45038ec8f02dd255bea038c5785f7290e0.tar.xz dexon-d520bf45038ec8f02dd255bea038c5785f7290e0.tar.zst dexon-d520bf45038ec8f02dd255bea038c5785f7290e0.zip |
cmd/swarm: fix some typos in manifest cmd (#16227)
Replace "atleast" with "at least" in the manifest error message.
-rw-r--r-- | cmd/swarm/manifest.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/swarm/manifest.go b/cmd/swarm/manifest.go index aa276e0f9..41a69a5d0 100644 --- a/cmd/swarm/manifest.go +++ b/cmd/swarm/manifest.go @@ -35,7 +35,7 @@ const bzzManifestJSON = "application/bzz-manifest+json" func add(ctx *cli.Context) { args := ctx.Args() if len(args) < 3 { - utils.Fatalf("Need atleast three arguments <MHASH> <path> <HASH> [<content-type>]") + utils.Fatalf("Need at least three arguments <MHASH> <path> <HASH> [<content-type>]") } var ( @@ -69,7 +69,7 @@ func update(ctx *cli.Context) { args := ctx.Args() if len(args) < 3 { - utils.Fatalf("Need atleast three arguments <MHASH> <path> <HASH>") + utils.Fatalf("Need at least three arguments <MHASH> <path> <HASH>") } var ( @@ -101,7 +101,7 @@ func update(ctx *cli.Context) { func remove(ctx *cli.Context) { args := ctx.Args() if len(args) < 2 { - utils.Fatalf("Need atleast two arguments <MHASH> <path>") + utils.Fatalf("Need at least two arguments <MHASH> <path>") } var ( |