[Bf-blender-cvs] [08687ee] master: Correct typos

Campbell Barton noreply at git.blender.org
Wed Jun 10 09:31:03 CEST 2015


Commit: 08687ee3804992652a3e4759c511db1dad8d8c80
Author: Campbell Barton
Date:   Wed Jun 10 17:28:43 2015 +1000
Branches: master
https://developer.blender.org/rB08687ee3804992652a3e4759c511db1dad8d8c80

Correct typos

D1337 by @lichtwerk

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

M	source/blender/editors/animation/anim_markers.c
M	source/blender/python/intern/bpy_rna.c

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

diff --git a/source/blender/editors/animation/anim_markers.c b/source/blender/editors/animation/anim_markers.c
index 4566337..67839d1 100644
--- a/source/blender/editors/animation/anim_markers.c
+++ b/source/blender/editors/animation/anim_markers.c
@@ -1537,7 +1537,7 @@ static void MARKER_OT_camera_bind(wmOperatorType *ot)
 {
 	/* identifiers */
 	ot->name = "Bind Camera to Markers";
-	ot->description = "Bind the active camera to selected markers(s)";
+	ot->description = "Bind the active camera to selected marker(s)";
 	ot->idname = "MARKER_OT_camera_bind";
 
 	/* api callbacks */
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index af5ec03..3f6ba4c 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -5239,7 +5239,7 @@ static PyObject *pyrna_func_call(BPy_FunctionRNA *self, PyObject *args, PyObject
 		good_args_str = BLI_dynstr_get_cstring(good_args);
 
 		PyErr_Format(PyExc_TypeError,
-		             "%.200s.%.200s(): was called with invalid keyword arguments(s) (%s), expected (%s)",
+		             "%.200s.%.200s(): was called with invalid keyword argument(s) (%s), expected (%s)",
 		             RNA_struct_identifier(self_ptr->type), RNA_function_identifier(self_func),
 		             bad_args_str, good_args_str);




More information about the Bf-blender-cvs mailing list