docs(docs): fixed typos in documentations (#32661)

Minor typo fixes. (Not linked to current open issues)
This commit is contained in:
Maitrey Talware
2025-08-25 07:02:53 -07:00
committed by GitHub
parent 1819c73d10
commit 622337a297
8 changed files with 19 additions and 21 deletions

View File

@@ -97,7 +97,7 @@ def skip_private_members(app, what, name, obj, skip, options):
if hasattr(obj, "__doc__") and obj.__doc__ and ":private:" in obj.__doc__:
return True
if name == "__init__" and obj.__objclass__ is object:
# dont document default init
# don't document default init
return True
return None