aboutsummaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorAmine Hilaly <hilalyamine@gmail.com>2019-06-16 23:02:59 +0200
committerAmine Hilaly <hilalyamine@gmail.com>2019-06-16 23:02:59 +0200
commit319b648d0f2d30c457c56df860dcecf89c80157a (patch)
tree8e4cfd58f79d47890110896450effdcf7e66721c /commands
parentf70e775dbd7c53ebb6e3cd2ec1af8d73d13449b0 (diff)
downloadgit-bug-319b648d0f2d30c457c56df860dcecf89c80157a.tar.gz
Naming fixes
Diffstat (limited to 'commands')
-rw-r--r--commands/bridge_rm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/bridge_rm.go b/commands/bridge_rm.go
index 80a831ff..5d38083c 100644
--- a/commands/bridge_rm.go
+++ b/commands/bridge_rm.go
@@ -15,7 +15,7 @@ func runBridgeRm(cmd *cobra.Command, args []string) error {
defer backend.Close()
interrupt.RegisterCleaner(backend.Close)
- err = bridge.RemoveBridges(backend, args[0])
+ err = bridge.RemoveBridge(backend, args[0])
if err != nil {
return err
}