Skip to content

Commit d520bf4

Browse files
niuzhenguogbalint
authored andcommitted
cmd/swarm: fix some typos in manifest cmd (#16227)
Replace "atleast" with "at least" in the manifest error message.
1 parent a76e46e commit d520bf4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cmd/swarm/manifest.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const bzzManifestJSON = "application/bzz-manifest+json"
3535
func add(ctx *cli.Context) {
3636
args := ctx.Args()
3737
if len(args) < 3 {
38-
utils.Fatalf("Need atleast three arguments <MHASH> <path> <HASH> [<content-type>]")
38+
utils.Fatalf("Need at least three arguments <MHASH> <path> <HASH> [<content-type>]")
3939
}
4040

4141
var (
@@ -69,7 +69,7 @@ func update(ctx *cli.Context) {
6969

7070
args := ctx.Args()
7171
if len(args) < 3 {
72-
utils.Fatalf("Need atleast three arguments <MHASH> <path> <HASH>")
72+
utils.Fatalf("Need at least three arguments <MHASH> <path> <HASH>")
7373
}
7474

7575
var (
@@ -101,7 +101,7 @@ func update(ctx *cli.Context) {
101101
func remove(ctx *cli.Context) {
102102
args := ctx.Args()
103103
if len(args) < 2 {
104-
utils.Fatalf("Need atleast two arguments <MHASH> <path>")
104+
utils.Fatalf("Need at least two arguments <MHASH> <path>")
105105
}
106106

107107
var (

0 commit comments

Comments
 (0)