Skip to content

Commit c758e51

Browse files
committed
Changed root to root_path in docstrings
1 parent d14a13a commit c758e51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_httpserver/server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def serve_forever(self, host: str, port: int = 80, root_path: str = "") -> None:
6464
6565
:param str host: host name or IP address
6666
:param int port: port
67-
:param str root: root directory to serve files from
67+
:param str root_path: root directory to serve files from
6868
"""
6969
self.start(host, port, root_path)
7070

@@ -81,7 +81,7 @@ def start(self, host: str, port: int = 80, root_path: str = "") -> None:
8181
8282
:param str host: host name or IP address
8383
:param int port: port
84-
:param str root: root directory to serve files from
84+
:param str root_path: root directory to serve files from
8585
"""
8686
self.root_path = root_path
8787

0 commit comments

Comments
 (0)