diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-09-24 09:15:07 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-10-16 10:34:59 +0900 |
commit | 7e23a061b313a7dd844aae463e7ad223b16125b9 (patch) | |
tree | d13971ca1581044aac267b09e060b14d02ee0ff7 /sphinx/project.py | |
parent | 84e1eeb8a2dd7092759471fd2e4525e7f0cbb8a5 (diff) | |
download | sphinx-git-7e23a061b313a7dd844aae463e7ad223b16125b9.tar.gz |
Fix typo
Diffstat (limited to 'sphinx/project.py')
-rw-r--r-- | sphinx/project.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/project.py b/sphinx/project.py index ed910088e..82ea54ef3 100644 --- a/sphinx/project.py +++ b/sphinx/project.py @@ -44,7 +44,7 @@ class Project(object): """Take over a result of last build.""" self.docnames = other.docnames - def discovery(self, exclude_paths=[]): + def discover(self, exclude_paths=[]): # type: (List[unicode]) -> Set[unicode] """Find all document files in the source directory and put them in :attr:`docnames`. |