]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2003] Typo fix in comment
authorMichal 'vorner' Vaner <michal.vaner@nic.cz>
Mon, 11 Jun 2012 14:53:10 +0000 (16:53 +0200)
committerMichal 'vorner' Vaner <michal.vaner@nic.cz>
Mon, 11 Jun 2012 14:53:10 +0000 (16:53 +0200)
src/lib/python/isc/server_common/tests/dns_tcp_test.py

index c46906b9bc9f6fb256561140123f4cc314a9b8a8..7e74c047cb6ea4c36a6a47b582b4124d07202862 100644 (file)
@@ -25,7 +25,7 @@ def check_length_field(assert_eq, len_data, expected_len):
     # Examine the "length field" part of the data.  It should be 2-byte field,
     # and (in our implementation) always given as a separate chunk of data.
     # The 16-bit length value of the actual data should be stored in the
-    # nextwork byte order.
+    # network byte order.
     len_high = (expected_len >> 8) & 0x00ff
     len_low = (expected_len & 0x00ff)
     assert_eq(2, len(len_data))