diff options
author | Louis Maddox <lmmx@users.noreply.github.com> | 2021-07-18 23:47:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-18 23:47:28 +0100 |
commit | 29f990650d3b2bbc598b6364b73439fad7b7d0c1 (patch) | |
tree | de688523df8b2fe9ce3a263f2802fb2d568f19d3 /sphinx/ext/apidoc.py | |
parent | 2160c0aa7ff67aa336bc2c8e955582d836cd367a (diff) | |
download | sphinx-git-29f990650d3b2bbc598b6364b73439fad7b7d0c1.tar.gz |
Improve sphinx.ext.apidoc docstrings
Diffstat (limited to 'sphinx/ext/apidoc.py')
-rw-r--r-- | sphinx/ext/apidoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/apidoc.py b/sphinx/ext/apidoc.py index d9a9648c6..471761c11 100644 --- a/sphinx/ext/apidoc.py +++ b/sphinx/ext/apidoc.py @@ -226,7 +226,7 @@ def walk(rootpath: str, excludes: List[str], opts: Any def has_child_module(rootpath: str, excludes: List[str], opts: Any) -> bool: - """Check the given directory contains child modules at least one.""" + """Check the given directory contains child module/s (at least one).""" for root, subs, files in walk(rootpath, excludes, opts): if files: return True |