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
diff options
context:
space:
mode:
-rw-r--r--doc/python_api/sphinx_doc_gen.py2
-rw-r--r--source/blender/editors/gpencil/gpencil_data.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index f17d5aa8ec0..0c179019e24 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -1704,7 +1704,7 @@ def write_rst_contents(basepath):
fw(".. toctree::\n")
fw(" :maxdepth: 1\n")
- fw(" :caption: Application Modules\n")
+ fw(" :caption: Application Modules\n\n")
app_modules = (
"bpy.context", # note: not actually a module
diff --git a/source/blender/editors/gpencil/gpencil_data.c b/source/blender/editors/gpencil/gpencil_data.c
index faeee4db169..752839e8dfa 100644
--- a/source/blender/editors/gpencil/gpencil_data.c
+++ b/source/blender/editors/gpencil/gpencil_data.c
@@ -2259,7 +2259,7 @@ void GPENCIL_OT_color_reveal(wmOperatorType *ot)
/* identifiers */
ot->name = "Show All Colors";
ot->idname = "GPENCIL_OT_color_reveal";
- ot->description = "Unhide all hidden Grease Pencil gpencil_ colors";
+ ot->description = "Unhide all hidden Grease Pencil colors";
/* callbacks */
ot->exec = gpencil_color_reveal_exec;