summaryrefslogtreecommitdiff
path: root/docs/doxygen/swig_doc.py
diff options
context:
space:
mode:
authorBen Reynwar <ben@reynwar.net>2013-04-07 23:07:11 -0700
committerBen Reynwar <ben@reynwar.net>2013-04-07 23:07:11 -0700
commit36dfc43ce9435faf61adae8dc955b8b3b411abdb (patch)
treed4513d27bf0b6e0f67842c729123923df0b3754a /docs/doxygen/swig_doc.py
parenta770fd18b3d43bb8b7f13bfce0687884d61c0e74 (diff)
sphinx-docs: Minor updates to sphinx documentation.
Diffstat (limited to 'docs/doxygen/swig_doc.py')
-rw-r--r--docs/doxygen/swig_doc.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/doxygen/swig_doc.py b/docs/doxygen/swig_doc.py
index 2326f0e5bd..da104a2e00 100644
--- a/docs/doxygen/swig_doc.py
+++ b/docs/doxygen/swig_doc.py
@@ -221,13 +221,13 @@ def make_block2_entry(di, block):
class_description = combine_descriptions(block)
make_func = block.get_member('make', DoxyFunction)
make_description = combine_descriptions(make_func)
- description = class_description + "\n\n" + make_description
+ description = class_description + "\n\nConstructor Specific Documentation:\n\n" + make_description
# Associate the combined description with the class and
# the make function.
output = []
- #output.append(make_class_entry(
- # block, description=description,
- # ignored_methods=['make'], params=make_func.params))
+ output.append(make_class_entry(
+ block, description=description,
+ ignored_methods=['make'], params=make_func.params))
makename = block.name() + '::make'
output.append(make_func_entry(
make_func, name=makename, description=description,