Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-09-26 05:24:58 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-09-29 03:11:06 +0300
commit4d7b664e1a4fa024a63f694847003daf3cd349f7 (patch)
tree97323adc47143f361d2ee4e7f38b0517a6894526 /doc
parentd5353eea5b285e6cc77bc507cfe39326f113ac3f (diff)
API Docs: Minor text improvements
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/sphinx_doc_gen.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index db5c161865f..ed1663582b9 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -173,7 +173,7 @@ def handle_args():
dest="log",
default=False,
action='store_true',
- help="Log the output of the api dump and sphinx|latex "
+ help="Log the output of the API dump and sphinx|latex "
"warnings and errors (default=False).\n"
"If given, save logs in:\n"
"* OUTPUT_DIR/.bpy.log\n"
@@ -350,9 +350,9 @@ RST_DIR = os.path.abspath(os.path.join(SCRIPT_DIR, "rst"))
# stored in ./rst/info_*
INFO_DOCS = (
("info_quickstart.rst",
- "Quickstart: new to Blender or scripting and want to get your feet wet?"),
+ "Quickstart: New to Blender or scripting and want to get your feet wet?"),
("info_overview.rst",
- "API Overview: a more complete explanation of Python integration"),
+ "API Overview: A more complete explanation of Python integration"),
("info_api_reference.rst",
"API Reference Usage: examples of how to use the API reference docs"),
("info_best_practice.rst",
@@ -360,8 +360,8 @@ INFO_DOCS = (
("info_tips_and_tricks.rst",
"Tips and Tricks: Hints to help you while writing scripts for Blender"),
("info_gotcha.rst",
- "Gotcha's: some of the problems you may encounter when writing scripts"),
- ("change_log.rst", "List of changes since last Blender release"),
+ "Gotcha's: Some of the problems you may encounter when writing scripts"),
+ ("change_log.rst", "Change Log: List of changes since last Blender release"),
)
# only support for properties atm.
@@ -1095,7 +1095,7 @@ def pycontext2sphinx(basepath):
fw("The context members available depend on the area of Blender which is currently being accessed.\n")
fw("\n")
fw("Note that all context values are readonly,\n")
- fw("but may be modified through the data api or by running operators\n\n")
+ fw("but may be modified through the data API or by running operators\n\n")
def write_contex_cls():