[Epydoc-commits] SF.net SVN: epydoc: [1368] trunk/epydoc/src/epydoc
Brought to you by:
edloper
From: <ed...@us...> - 2006-09-07 15:55:46
|
Revision: 1368 http://svn.sourceforge.net/epydoc/?rev=1368&view=rev Author: edloper Date: 2006-09-07 08:55:42 -0700 (Thu, 07 Sep 2006) Log Message: ----------- - Docstring fixes Modified Paths: -------------- trunk/epydoc/src/epydoc/docintrospecter.py trunk/epydoc/src/epydoc/docwriter/html.py trunk/epydoc/src/epydoc/log.py Modified: trunk/epydoc/src/epydoc/docintrospecter.py =================================================================== --- trunk/epydoc/src/epydoc/docintrospecter.py 2006-09-07 15:55:15 UTC (rev 1367) +++ trunk/epydoc/src/epydoc/docintrospecter.py 2006-09-07 15:55:42 UTC (rev 1368) @@ -758,7 +758,7 @@ """ Given a name, return the corresponding value. - @param globals: A namespace to check for the value, if there is no + @param globs: A namespace to check for the value, if there is no module containing the named value. Defaults to __builtin__. """ name = DottedName(name) Modified: trunk/epydoc/src/epydoc/docwriter/html.py =================================================================== --- trunk/epydoc/src/epydoc/docwriter/html.py 2006-09-07 15:55:15 UTC (rev 1367) +++ trunk/epydoc/src/epydoc/docwriter/html.py 2006-09-07 15:55:42 UTC (rev 1368) @@ -208,7 +208,7 @@ Construct a new HTML writer, using the given documentation index. - @param docmap: The documentation index. + @param docindex: The documentation index. @type prj_name: C{string} @keyword prj_name: The name of the project. Defaults to @@ -286,7 +286,7 @@ inherited objects are mixed in with non-inherited objects. The default is 'grouped'. @type include_source_code: C{boolean} - @param include_sourc_ecode: If true, then generate colorized + @keyword include_source_code: If true, then generate colorized source code files for each python module. """ self.docindex = docindex Modified: trunk/epydoc/src/epydoc/log.py =================================================================== --- trunk/epydoc/src/epydoc/log.py 2006-09-07 15:55:15 UTC (rev 1367) +++ trunk/epydoc/src/epydoc/log.py 2006-09-07 15:55:42 UTC (rev 1368) @@ -107,7 +107,7 @@ """ Update the progress display. - @param progress: A float from 0.0 to 1.0, indicating how much + @param percent: A float from 0.0 to 1.0, indicating how much progress has been made. @param message: A message indicating the most recent action that contributed towards that progress. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |