Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hellt committed Nov 19, 2020
1 parent d7c49bd commit 2c5d2cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clab/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ func (c *cLab) VerifyBridgesExist() error {
for name, node := range c.Nodes {
if node.Kind == "bridge" {
if _, err := netlink.LinkByName(name); err != nil {
return fmt.Errorf("fridge %s is referenced in the endpoints section but was not found in the default network namespace", name)
return fmt.Errorf("bridge %s is referenced in the endpoints section but was not found in the default network namespace", name)
}
}
}
Expand Down

0 comments on commit 2c5d2cc

Please sign in to comment.