Fix minor typo in @cached_property docstring (#9886)

This commit is contained in:
Bastien Gérard
2021-07-04 06:29:55 +02:00
committed by GitHub
parent 17b6379df5
commit 510e64fa43
6 changed files with 6 additions and 6 deletions

View File

@@ -47,7 +47,7 @@ def convert_js_args_to_python_args(fn):
class cached_property(object):
# this caches the result of the function call for fn with no inputs
# use this as a decorator on fuction methods that you want converted
# use this as a decorator on function methods that you want converted
# into cached properties
result_key = '_results'