Skip to content

Commit c107cba

Browse files
author
Egor Konovalov
committed
Merged in fix-wrong-doc-comment (pull request python#2)
fix: typo in docstring Approved-by: Sergey Vorfolomeev
2 parents 87ea536 + 16a605a commit c107cba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/vms/lib/_lib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ static PyMethodDef _module_methods[] = {
817817
{"set_symbol", (PyCFunction) LIB_set_symbol, METH_FASTCALL,
818818
PyDoc_STR("set_symbol(name: str, value: str)->status: number Sets DCL local symbol")},
819819
{"delete_symbol", (PyCFunction) LIB_delete_symbol, METH_O,
820-
PyDoc_STR("delete_symbol(name: str)->status: number Returns DCL symbol")},
820+
PyDoc_STR("delete_symbol(name: str)->status: number Deletes DCL symbol")},
821821
{"shorten_name", (PyCFunction) LIB_shorten_name, METH_O,
822822
PyDoc_STR("shorten_name(name: str)->short_name: str Shorten the name for LINK")},
823823
{NULL, NULL}

0 commit comments

Comments
 (0)