[Bf-blender-cvs] [e6a69f76535] master: Docs: Capitalize first word of sentence

Aaron Carlisle noreply at git.blender.org
Sun May 30 17:09:37 CEST 2021


Commit: e6a69f76535b3a0c65b88265d614007deb9fe760
Author: Aaron Carlisle
Date:   Sun May 30 11:09:01 2021 -0400
Branches: master
https://developer.blender.org/rBe6a69f76535b3a0c65b88265d614007deb9fe760

Docs: Capitalize first word of sentence

===================================================================

M	doc/python_api/sphinx_doc_gen.py

===================================================================

diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index 64a8ef64b23..4be27e0f0e8 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -954,7 +954,7 @@ def pymodule2sphinx(basepath, module_name, module, title, module_all_extra):
             # constant, not much fun we can do here except to list it.
             # TODO, figure out some way to document these!
             fw(".. data:: %s\n\n" % attribute)
-            write_indented_lines("   ", fw, "constant value %s" % repr(value), False)
+            write_indented_lines("   ", fw, "Constant value %s" % repr(value), False)
             fw("\n")
         else:
             BPY_LOGGER.debug("\tnot documenting %s.%s of %r type" % (module_name, attribute, value_type.__name__))



More information about the Bf-blender-cvs mailing list