Skip to content

Commit 7bbd568

Browse files
authored
posixmodule.c: fix chdir docstring
Fixes the following issue: ``` >>> from docutils.core import publish_doctree >>> from posix import chdir >>> publish_doctree(chdir.__doc__) <string>:5: (ERROR/3) Unexpected indentation. ```
1 parent 8e2f4b4 commit 7bbd568

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/posixmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3477,7 +3477,7 @@ Change the current working directory to the specified path.
34773477
34783478
path may always be specified as a string.
34793479
On some platforms, path may also be specified as an open file descriptor.
3480-
If this functionality is unavailable, using it raises an exception.
3480+
If this functionality is unavailable, using it raises an exception.
34813481
[clinic start generated code]*/
34823482

34833483
static PyObject *

0 commit comments

Comments
 (0)