Skip to content

Commit 6d0a9ba

Browse files
committed
docs(artifacts): fix english
Signed-off-by: Celso Henrique Souza Silva <celsohenrique367@gmail.com>
1 parent 761933e commit 6d0a9ba

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

cmd/podman/artifact/rm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var (
3333
func rmFlags(cmd *cobra.Command) {
3434
flags := cmd.Flags()
3535
flags.BoolVarP(&rmOptions.All, "all", "a", false, "Remove all artifacts")
36-
flags.BoolVarP(&rmOptions.Ignore, "ignore", "i", false, "Ignore error if artifact does not exists")
36+
flags.BoolVarP(&rmOptions.Ignore, "ignore", "i", false, "Ignore error if artifact does not exist")
3737
}
3838
func init() {
3939
registry.Commands = append(registry.Commands, registry.CliCommand{

docs/source/markdown/podman-artifact-rm.1.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Print usage statement.
2424

2525
#### **--ignore**, **-i**
2626

27-
Remove artifacts in the local store, ignoring errors when trying to remove artifacts that does not exists.
27+
Remove artifacts in the local store, ignoring errors when trying to remove artifacts that do not exist.
2828

2929
## EXAMPLES
3030

@@ -52,9 +52,9 @@ Deleted: cee15f7c5ce3e86ae6ce60d84bebdc37ad34acfa9a2611cf47501469ac83a1ab
5252
Deleted: 72875f8f6f78d5b8ba98b2dd2c0a6f395fde8f05ff63a1df580d7a88f5afa97b
5353
```
5454

55-
Remove artifacts ignoring the errors if the artifact does not exists.
55+
Remove artifacts ignoring the errors if the artifact does not exist.
5656
```
57-
$ podman artifact rm -i NonExistsId 93fd78260bd1 c0ed59d05ff7
57+
$ podman artifact rm -i NonExistsId
5858
```
5959

6060
## SEE ALSO

pkg/api/server/register_artifacts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ func (s *APIServer) registerArtifactHandlers(r *mux.Router) error {
118118
// type: boolean
119119
// - name: ignore
120120
// in: query
121-
// description: Ignore errors if artifact does not exists
121+
// description: Ignore errors if artifact do not exist
122122
// type: boolean
123123
// responses:
124124
// 200:

0 commit comments

Comments
 (0)