Skip to content

Commit c92fcdf

Browse files
committed
module: fix comment
1 parent 01b3e4d commit c92fcdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/module.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ def __init__(self, ip_add):
5151
self.ipaddress = ipaddress.ip_address(ip_add)
5252

5353
def htonl(self):
54-
"""transform self.ipaddress by applicating of the htonl on it"""
54+
"""transform self.ipaddress by applying htonl to it"""
5555
ip_int = int(self.ipaddress)
5656
self.ipaddress = ipaddress.ip_address(socket.htonl(ip_int))
5757
return self
5858

5959
def ntohl(self):
60-
"""transform self.ipaddress by applicating of the ntohl on it"""
60+
"""transform self.ipaddress by applying ntohl to it"""
6161
ip_int = int(self.ipaddress)
6262
self.ipaddresss = ipaddress.ip_address(socket.ntohl(ip_int))
6363
return self

0 commit comments

Comments
 (0)