mirror of https://github.com/docker/cli.git
[docs] Fix typo in manifest command docs: updated `MANFEST` to `MANIFEST`.
Signed-off-by: Bogdan Anton <contact@bogdananton.ro>
This commit is contained in:
parent
eb4a4fe9b9
commit
9fa6bd4174
|
@ -21,7 +21,7 @@ func newCreateListCommand(dockerCli command.Cli) *cobra.Command {
|
||||||
opts := createOpts{}
|
opts := createOpts{}
|
||||||
|
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
Use: "create MANFEST_LIST MANIFEST [MANIFEST...]",
|
Use: "create MANIFEST_LIST MANIFEST [MANIFEST...]",
|
||||||
Short: "Create a local manifest list for annotating and pushing to a registry",
|
Short: "Create a local manifest list for annotating and pushing to a registry",
|
||||||
Args: cli.RequiresMinArgs(2),
|
Args: cli.RequiresMinArgs(2),
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
|
|
|
@ -65,7 +65,7 @@ Options:
|
||||||
### manifest create
|
### manifest create
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
Usage: docker manifest create MANFEST_LIST MANIFEST [MANIFEST...]
|
Usage: docker manifest create MANIFEST_LIST MANIFEST [MANIFEST...]
|
||||||
|
|
||||||
Create a local manifest list for annotating and pushing to a registry
|
Create a local manifest list for annotating and pushing to a registry
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue