diff options
author | Yuichi Ito <ito.yuichi0@gmail.com> | 2013-10-28 16:15:20 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-10-28 22:54:24 +0900 |
commit | 3647b1ff2235bf18cb7c5cc3831201c9fc0f31c2 (patch) | |
tree | 01b280378ed78479190a4a6cb0712db014d92c36 | |
parent | eed16aa0ca61a67c0f2d8e290ec32b9b1fc14da9 (diff) |
correct typos
Signed-off-by: Yuichi Ito <ito.yuichi0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/lib/lacplib.py | 2 | ||||
-rw-r--r-- | ryu/lib/packet/arp.py | 2 | ||||
-rw-r--r-- | ryu/lib/packet/bgp.py | 12 | ||||
-rw-r--r-- | ryu/lib/packet/bpdu.py | 4 | ||||
-rw-r--r-- | ryu/lib/packet/dhcp.py | 6 | ||||
-rw-r--r-- | ryu/lib/packet/ethernet.py | 2 | ||||
-rw-r--r-- | ryu/lib/packet/icmp.py | 8 | ||||
-rw-r--r-- | ryu/lib/packet/icmpv6.py | 14 | ||||
-rw-r--r-- | ryu/lib/packet/igmp.py | 2 | ||||
-rw-r--r-- | ryu/lib/packet/ipv4.py | 2 | ||||
-rw-r--r-- | ryu/lib/packet/llc.py | 8 | ||||
-rw-r--r-- | ryu/lib/packet/mpls.py | 2 | ||||
-rw-r--r-- | ryu/lib/packet/slow.py | 2 | ||||
-rw-r--r-- | ryu/lib/packet/tcp.py | 2 | ||||
-rw-r--r-- | ryu/lib/packet/udp.py | 2 | ||||
-rw-r--r-- | ryu/lib/packet/vlan.py | 2 |
16 files changed, 36 insertions, 36 deletions
diff --git a/ryu/lib/lacplib.py b/ryu/lib/lacplib.py index ae7cc3d3..9b1600f3 100644 --- a/ryu/lib/lacplib.py +++ b/ryu/lib/lacplib.py @@ -73,7 +73,7 @@ class LacpLib(app_manager.RyuApp): def add(self, dpid, ports): """add a setting of a bonding i/f. - 'add' method takes the correspondig args in this order. + 'add' method takes the corresponding args in this order. ========= ===================================================== Attribute Description diff --git a/ryu/lib/packet/arp.py b/ryu/lib/packet/arp.py index 191ce9a9..1ede650f 100644 --- a/ryu/lib/packet/arp.py +++ b/ryu/lib/packet/arp.py @@ -35,7 +35,7 @@ class arp(packet_base.PacketBase): Most of them are same to the on-wire counterparts but in host byte order. IPv4 addresses are represented as a string like '192.0.2.1'. MAC addresses are represented as a string like '08:60:6e:7f:74:e7'. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ============== ==================== ===================== Attribute Description Example diff --git a/ryu/lib/packet/bgp.py b/ryu/lib/packet/bgp.py index 226aeb27..d4780f6f 100644 --- a/ryu/lib/packet/bgp.py +++ b/ryu/lib/packet/bgp.py @@ -723,7 +723,7 @@ class BGPMessage(packet_base.PacketBase, _TypeDisp): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ========================== =============================================== Attribute Description @@ -785,7 +785,7 @@ class BGPOpen(BGPMessage): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ========================== =============================================== Attribute Description @@ -867,7 +867,7 @@ class BGPUpdate(BGPMessage): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ========================== =============================================== Attribute Description @@ -971,7 +971,7 @@ class BGPKeepAlive(BGPMessage): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ========================== =============================================== Attribute Description @@ -1003,7 +1003,7 @@ class BGPNotification(BGPMessage): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ========================== =============================================== Attribute Description @@ -1057,7 +1057,7 @@ class BGPRouteRefresh(BGPMessage): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ========================== =============================================== Attribute Description diff --git a/ryu/lib/packet/bpdu.py b/ryu/lib/packet/bpdu.py index 91aefa25..8756518a 100644 --- a/ryu/lib/packet/bpdu.py +++ b/ryu/lib/packet/bpdu.py @@ -216,7 +216,7 @@ class ConfigurationBPDUs(bpdu): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ========================== =============================================== Attribute Description @@ -404,7 +404,7 @@ class RstBPDUs(ConfigurationBPDUs): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ========================== =========================================== Attribute Description diff --git a/ryu/lib/packet/dhcp.py b/ryu/lib/packet/dhcp.py index 3b2b97b1..6e0cab1e 100644 --- a/ryu/lib/packet/dhcp.py +++ b/ryu/lib/packet/dhcp.py @@ -96,7 +96,7 @@ class dhcp(packet_base.PacketBase): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. .. tabularcolumns:: |l|L| @@ -210,7 +210,7 @@ class options(stringify.StringifyMixin): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. .. tabularcolumns:: |l|L| @@ -273,7 +273,7 @@ class option(stringify.StringifyMixin): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ============== ==================== Attribute Description diff --git a/ryu/lib/packet/ethernet.py b/ryu/lib/packet/ethernet.py index 2b8c932d..349a352c 100644 --- a/ryu/lib/packet/ethernet.py +++ b/ryu/lib/packet/ethernet.py @@ -26,7 +26,7 @@ class ethernet(packet_base.PacketBase): An instance has the following attributes at least. MAC addresses are represented as a string like '08:60:6e:7f:74:e7'. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ============== ==================== ===================== Attribute Description Example diff --git a/ryu/lib/packet/icmp.py b/ryu/lib/packet/icmp.py index a07a5c77..e383e216 100644 --- a/ryu/lib/packet/icmp.py +++ b/ryu/lib/packet/icmp.py @@ -38,7 +38,7 @@ class icmp(packet_base.PacketBase): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. .. tabularcolumns:: |l|L| @@ -125,7 +125,7 @@ class echo(stringify.StringifyMixin): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. .. tabularcolumns:: |l|L| @@ -177,7 +177,7 @@ class dest_unreach(stringify.StringifyMixin): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. [RFC1191] reserves bits for the "Next-Hop MTU" field. [RFC4884] introduced 8-bit data length attribute. @@ -237,7 +237,7 @@ class TimeExceeded(stringify.StringifyMixin): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. [RFC4884] introduced 8-bit data length attribute. diff --git a/ryu/lib/packet/icmpv6.py b/ryu/lib/packet/icmpv6.py index 256f53d6..4da7fa2c 100644 --- a/ryu/lib/packet/icmpv6.py +++ b/ryu/lib/packet/icmpv6.py @@ -62,7 +62,7 @@ class icmpv6(packet_base.PacketBase): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. .. tabularcolumns:: |l|p{35em}| @@ -140,7 +140,7 @@ class nd_neighbor(stringify.StringifyMixin): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. .. tabularcolumns:: |l|p{35em}| @@ -226,7 +226,7 @@ class nd_router_solicit(stringify.StringifyMixin): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. .. tabularcolumns:: |l|p{35em}| @@ -304,7 +304,7 @@ class nd_router_advert(stringify.StringifyMixin): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. .. tabularcolumns:: |l|p{35em}| @@ -414,7 +414,7 @@ class nd_option_la(stringify.StringifyMixin): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. .. tabularcolumns:: |l|p{35em}| @@ -469,7 +469,7 @@ class nd_option_pi(stringify.StringifyMixin): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. .. tabularcolumns:: |l|p{35em}| @@ -527,7 +527,7 @@ class echo(stringify.StringifyMixin): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ============== ==================== Attribute Description diff --git a/ryu/lib/packet/igmp.py b/ryu/lib/packet/igmp.py index a42300fb..2b9485b1 100644 --- a/ryu/lib/packet/igmp.py +++ b/ryu/lib/packet/igmp.py @@ -71,7 +71,7 @@ class igmp(packet_base.PacketBase): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. =============== ==================================================== Attribute Description diff --git a/ryu/lib/packet/ipv4.py b/ryu/lib/packet/ipv4.py index 73ad4f3b..2247bdb0 100644 --- a/ryu/lib/packet/ipv4.py +++ b/ryu/lib/packet/ipv4.py @@ -41,7 +41,7 @@ class ipv4(packet_base.PacketBase): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. IPv4 addresses are represented as a string like '192.0.2.1'. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ============== ======================================== ================== Attribute Description Example diff --git a/ryu/lib/packet/llc.py b/ryu/lib/packet/llc.py index 7601dced..12d557da 100644 --- a/ryu/lib/packet/llc.py +++ b/ryu/lib/packet/llc.py @@ -102,7 +102,7 @@ class llc(packet_base.PacketBase): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. .. tabularcolumns:: |l|L| @@ -173,7 +173,7 @@ class ControlFormatI(stringify.StringifyMixin): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ======================== =============================== Attribute Description @@ -222,7 +222,7 @@ class ControlFormatS(stringify.StringifyMixin): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ======================== =============================== Attribute Description @@ -274,7 +274,7 @@ class ControlFormatU(stringify.StringifyMixin): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ======================== =============================== Attribute Description diff --git a/ryu/lib/packet/mpls.py b/ryu/lib/packet/mpls.py index 1a69157e..7a56766f 100644 --- a/ryu/lib/packet/mpls.py +++ b/ryu/lib/packet/mpls.py @@ -29,7 +29,7 @@ class mpls(packet_base.PacketBase): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ============== ==================== Attribute Description diff --git a/ryu/lib/packet/slow.py b/ryu/lib/packet/slow.py index 5ace157d..61a91c06 100644 --- a/ryu/lib/packet/slow.py +++ b/ryu/lib/packet/slow.py @@ -189,7 +189,7 @@ class lacp(packet_base.PacketBase): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. .. tabularcolumns:: |l|L| diff --git a/ryu/lib/packet/tcp.py b/ryu/lib/packet/tcp.py index e9982b4f..e6932ae6 100644 --- a/ryu/lib/packet/tcp.py +++ b/ryu/lib/packet/tcp.py @@ -24,7 +24,7 @@ class tcp(packet_base.PacketBase): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ============== ==================== Attribute Description diff --git a/ryu/lib/packet/udp.py b/ryu/lib/packet/udp.py index 83cd51ac..e3bf5e5f 100644 --- a/ryu/lib/packet/udp.py +++ b/ryu/lib/packet/udp.py @@ -24,7 +24,7 @@ class udp(packet_base.PacketBase): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ============== ==================== Attribute Description diff --git a/ryu/lib/packet/vlan.py b/ryu/lib/packet/vlan.py index e6722729..8930197b 100644 --- a/ryu/lib/packet/vlan.py +++ b/ryu/lib/packet/vlan.py @@ -29,7 +29,7 @@ class vlan(packet_base.PacketBase): An instance has the following attributes at least. Most of them are same to the on-wire counterparts but in host byte order. - __init__ takes the correspondig args in this order. + __init__ takes the corresponding args in this order. ============== ==================== Attribute Description |