Skip to content

Commit

Permalink
Fix incorrect quotes in docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalbert authored May 29, 2024
1 parent fe0e02a commit 05e8c19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_wiznet5k/adafruit_wiznet5k_socketpool.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def inet_aton(self, ip_address: str) -> bytes:
def inet_ntoa(self, ip_address: Union[bytes, bytearray]) -> str:
"""
Convert a 32-bit packed IPv4 address (a bytes-like object four bytes in length) to
its standard dotted-quad string representation (for example, 123.45.67.89). This is
its standard dotted-quad string representation (for example, "123.45.67.89"). This is
useful when conversing with a program that uses the standard C library and needs
objects of type struct in_addr, which is the C type for the 32-bit packed binary data
this function takes as an argument.
Expand Down

0 comments on commit 05e8c19

Please sign in to comment.