Skip to content

Commit

Permalink
Merge pull request #468 from chadell/fix-message-typo
Browse files Browse the repository at this point in the history
Fix typo in WithTopoFile fatal message
  • Loading branch information
hellt committed Jun 22, 2021
2 parents e4b0f58 + e11e2f3 commit b2764f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clab/clab.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func WithRuntime(name string, d bool, dur time.Duration, gracefulShutdown bool)
func WithTopoFile(file string) ClabOption {
return func(c *CLab) {
if file == "" {
log.Fatal("provide a path to the clab toplogy file")
log.Fatal("provide a path to the clab topology file")
}
if err := c.GetTopology(file); err != nil {
log.Fatalf("failed to read topology file: %v", err)
Expand Down

0 comments on commit b2764f1

Please sign in to comment.