diff --git a/stdlib/2/string.pyi b/stdlib/2/string.pyi index 4bbfb486c..751fd28a0 100644 --- a/stdlib/2/string.pyi +++ b/stdlib/2/string.pyi @@ -41,9 +41,9 @@ def strip(s: AnyStr, chars: AnyStr = ...) -> AnyStr: ... def swapcase(s: AnyStr) -> AnyStr: ... def translate(s: str, table: str, deletechars: str = ...) -> str: ... def upper(s: AnyStr) -> AnyStr: ... -def ljust(s: AnyStr, width: int, fillhar: AnyStr = ...) -> AnyStr: ... -def rjust(s: AnyStr, width: int, fillhar: AnyStr = ...) -> AnyStr: ... -def center(s: AnyStr, width: int, fillhar: AnyStr = ...) -> AnyStr: ... +def ljust(s: AnyStr, width: int, fillchar: AnyStr = ...) -> AnyStr: ... +def rjust(s: AnyStr, width: int, fillchar: AnyStr = ...) -> AnyStr: ... +def center(s: AnyStr, width: int, fillchar: AnyStr = ...) -> AnyStr: ... def zfill(s: AnyStr, width: int) -> AnyStr: ... def replace(s: AnyStr, old: AnyStr, new: AnyStr, maxreplace: int = ...) -> AnyStr: ...