Emend a spelling error

This commit is contained in:
Adam Turner 2023-12-29 17:11:49 +00:00
parent 2910a92d66
commit edf52e709f

View File

@ -497,7 +497,7 @@ def check_confval_types(app: Sphinx | None, config: Config) -> None:
if callable(default): if callable(default):
default = default(config) # evaluate default value default = default(config) # evaluate default value
if default is None and not valid_types: if default is None and not valid_types:
continue # neither inferable nor expliclitly annotated types continue # neither inferable nor explicitly annotated types
if valid_types is Any: if valid_types is Any:
# any type of value is accepted # any type of value is accepted