diff --git a/mininet/cli.py b/mininet/cli.py index 67823de6a2c1de6d3ec9c3bb49e256f80948c616..aa3c2b366589a938f9bafc94f80dd6e4695c9491 100644 --- a/mininet/cli.py +++ b/mininet/cli.py @@ -160,7 +160,7 @@ def do_pingpair( self, _line ): self.mn.pingPair() def do_pingallfull( self, _line ): - "Ping between first two hosts, returns all ping results." + "Ping between all hosts, returns all ping results." self.mn.pingAllFull() def do_pingpairfull( self, _line ): @@ -187,7 +187,7 @@ def do_iperf( self, line ): error( 'invalid number of args: iperf src dst\n' ) def do_iperfudp( self, line ): - "Simple iperf TCP test between two (optionally specified) hosts." + "Simple iperf UDP test between two (optionally specified) hosts." args = line.split() if not args: self.mn.iperf( l4Type='UDP' )