Skip to content

Commit

Permalink
Correct spelling of 'prune'
Browse files Browse the repository at this point in the history
  • Loading branch information
eulores authored and navidys committed Aug 23, 2024
1 parent 561f937 commit 1232a28
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pdcs/containers/prune.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

// Prune removes all non running containers.
func Prune() ([]string, error) {
log.Debug().Msgf("pdcs: podman container purne")
log.Debug().Msgf("pdcs: podman container prune")

var report []string

Expand Down
2 changes: 1 addition & 1 deletion pdcs/pods/prune.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

// Prune removes all stop pods.
func Prune() ([]string, error) {
log.Debug().Msgf("pdcs: podman pod purne")
log.Debug().Msgf("pdcs: podman pod prune")

var report []string

Expand Down
2 changes: 1 addition & 1 deletion ui/containers/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ func (cnt *Containers) cprune() {
}

func (cnt *Containers) prune() {
cnt.progressDialog.SetTitle("container purne in progress")
cnt.progressDialog.SetTitle("container prune in progress")
cnt.progressDialog.Display()

prune := func() {
Expand Down
2 changes: 1 addition & 1 deletion ui/images/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ func (img *Images) cprune() {
}

func (img *Images) prune() {
img.progressDialog.SetTitle("image purne in progress")
img.progressDialog.SetTitle("image prune in progress")
img.progressDialog.Display()

prune := func() {
Expand Down
2 changes: 1 addition & 1 deletion ui/networks/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ func (nets *Networks) cprune() {
}

func (nets *Networks) prune() {
nets.progressDialog.SetTitle("network purne in progress")
nets.progressDialog.SetTitle("network prune in progress")
nets.progressDialog.Display()

prune := func() {
Expand Down
2 changes: 1 addition & 1 deletion ui/pods/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func (p *Pods) pause() {
}

func (p *Pods) prune() {
p.progressDialog.SetTitle("pod purne in progress")
p.progressDialog.SetTitle("pod prune in progress")
p.progressDialog.Display()

unpause := func() {
Expand Down
2 changes: 1 addition & 1 deletion ui/system/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func (sys *System) cprune() {
}

func (sys *System) prune() {
sys.progressDialog.SetTitle("system purne in progress")
sys.progressDialog.SetTitle("system prune in progress")
sys.progressDialog.Display()

prune := func() {
Expand Down
2 changes: 1 addition & 1 deletion ui/volumes/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func (vols *Volumes) prunePrep() {
}

func (vols *Volumes) prune() {
vols.progressDialog.SetTitle("VOLUME purne in progress")
vols.progressDialog.SetTitle("VOLUME prune in progress")
vols.progressDialog.Display()

prune := func() {
Expand Down

0 comments on commit 1232a28

Please sign in to comment.