From 05e8c19137d4c2434e8a43579cb917595056cf9c Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Wed, 29 May 2024 09:10:11 -0400 Subject: [PATCH] Fix incorrect quotes in docstring --- adafruit_wiznet5k/adafruit_wiznet5k_socketpool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adafruit_wiznet5k/adafruit_wiznet5k_socketpool.py b/adafruit_wiznet5k/adafruit_wiznet5k_socketpool.py index 59959a6..d68452f 100644 --- a/adafruit_wiznet5k/adafruit_wiznet5k_socketpool.py +++ b/adafruit_wiznet5k/adafruit_wiznet5k_socketpool.py @@ -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.