Skip to content

Commit

Permalink
docs: fix lowercase initials and typos
Browse files Browse the repository at this point in the history
Signed-off-by: ChengenH <hce19970702@gmail.com>
  • Loading branch information
ChengenH committed Dec 11, 2024
1 parent 9bfd0b4 commit c22fab2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -1252,11 +1252,11 @@ var ChainExportRangeCmd = &cli.Command{
}

if head.Height() < tail.Height() {
return errors.New("Height of --head tipset must be greater or equal to the height of the --tail tipset")
return errors.New("height of --head tipset must be greater or equal to the height of the --tail tipset")
}

if !cctx.Bool("internal") {
return errors.New("Non-internal exports are not implemented")
return errors.New("non-internal exports are not implemented")
}

err = api.ChainExportRangeInternal(ctx, head.Key(), tail.Key(), lapi.ChainExportConfig{
Expand Down

0 comments on commit c22fab2

Please sign in to comment.