Skip to content

Commit 7581d3d

Browse files
committed
Fix docstring
1 parent 2f2a9e7 commit 7581d3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shared-bindings/wifi/Radio.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ STATIC mp_obj_t wifi_radio_stop_dhcp_client(mp_obj_t self) {
664664
MP_DEFINE_CONST_FUN_OBJ_1(wifi_radio_stop_dhcp_client_obj, wifi_radio_stop_dhcp_client);
665665

666666
//| def start_dhcp_ap(self) -> None:
667-
//| """Starts the access point DHCP client."""
667+
//| """Starts the access point DHCP server."""
668668
//| ...
669669
STATIC mp_obj_t wifi_radio_start_dhcp_server(mp_obj_t self) {
670670
common_hal_wifi_radio_start_dhcp_server(self);
@@ -673,7 +673,7 @@ STATIC mp_obj_t wifi_radio_start_dhcp_server(mp_obj_t self) {
673673
MP_DEFINE_CONST_FUN_OBJ_1(wifi_radio_start_dhcp_server_obj, wifi_radio_start_dhcp_server);
674674

675675
//| def stop_dhcp_ap(self) -> None:
676-
//| """Stops the access point DHCP client. Needed to assign a static IP address."""
676+
//| """Stops the access point DHCP server. Needed to assign a static IP address."""
677677
//| ...
678678
STATIC mp_obj_t wifi_radio_stop_dhcp_server(mp_obj_t self) {
679679
common_hal_wifi_radio_stop_dhcp_server(self);

0 commit comments

Comments
 (0)