From f6ae27daef0e0a27e0c14ef3412161eec229c539 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 4 Mar 2012 04:35:12 +0000 Subject: style cleanup - comment spelling + translate some dutch. --- source/blender/blenkernel/intern/idprop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenkernel/intern/idprop.c') diff --git a/source/blender/blenkernel/intern/idprop.c b/source/blender/blenkernel/intern/idprop.c index 163c3721dc8..b06cc8414a6 100644 --- a/source/blender/blenkernel/intern/idprop.c +++ b/source/blender/blenkernel/intern/idprop.c @@ -379,7 +379,7 @@ void IDP_ConcatString(IDProperty *str1, IDProperty *append) int newlen; /* since ->len for strings includes the NULL byte, we have to subtract one or - * we'll get an extra null byte after each concatination operation.*/ + * we'll get an extra null byte after each concatenation operation.*/ newlen = str1->len + append->len - 1; IDP_ResizeArray(str1, newlen); strcat(str1->data.pointer, append->data.pointer); -- cgit v1.2.3