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:
authorSybren A. Stüvel <sybren@blender.org>2021-03-09 19:42:09 +0300
committerSybren A. Stüvel <sybren@blender.org>2021-03-09 19:42:23 +0300
commit8351e2d4b94c601bcf1984a2c92ccfaa2a2601fa (patch)
tree4e5dea957b5d428d4550239ccb7ecf4c1cd557d0
parent4069016de893866c996d0979ab35e9f3c6aeb957 (diff)
Cleanup: add missing full stop to docstring of function
No functional changes.
-rw-r--r--source/blender/makesrna/intern/rna_pose_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_pose_api.c b/source/blender/makesrna/intern/rna_pose_api.c
index d93972aa0ad..29516830058 100644
--- a/source/blender/makesrna/intern/rna_pose_api.c
+++ b/source/blender/makesrna/intern/rna_pose_api.c
@@ -136,7 +136,7 @@ void RNA_api_pose(StructRNA *srna)
RNA_def_function_ui_description(
func,
"Apply the given action to this pose by evaluating it at a specific time. Only updates the "
- "pose of selected bones, or all bones if none are selected");
+ "pose of selected bones, or all bones if none are selected.");
parm = RNA_def_pointer(func, "action", "Action", "Action", "The Action containing the pose");
RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);