Update documentation for Python >= 3.5 requirement

This commit is contained in:
Jon Siwek 2020-11-24 20:20:02 -08:00
parent 459dc91463
commit 33a55a04c3
2 changed files with 3 additions and 1 deletions

View file

@ -1405,7 +1405,7 @@ function swap_case%(str: string%) : string
%}
## Converts a string to Title Case. This changes the first character of each sequence of non-space characters
## in the string to be capitalized. See https://docs.python.org/2/library/stdtypes.html#str.title for more info.
## in the string to be capitalized. See https://docs.python.org/3/library/stdtypes.html#str.title for more info.
##
## str: The string to convert.
##