From 89a963fb7fdff543b77de790355b9dac3019bd33 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 9 Mar 2012 18:28:30 +0000 Subject: style cleanup: comment blocks --- source/blender/modifiers/intern/MOD_boolean.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/modifiers/intern/MOD_boolean.c') diff --git a/source/blender/modifiers/intern/MOD_boolean.c b/source/blender/modifiers/intern/MOD_boolean.c index 72e54754498..76560d14e3b 100644 --- a/source/blender/modifiers/intern/MOD_boolean.c +++ b/source/blender/modifiers/intern/MOD_boolean.c @@ -133,8 +133,8 @@ static DerivedMesh *applyModifier(ModifierData *md, Object *ob, DerivedMesh *result; /* when one of objects is empty (has got no faces) we could speed up - calculation a bit returning one of objects' derived meshes (or empty one) - Returning mesh is depended on modifieier's operation (sergey) */ + * calculation a bit returning one of objects' derived meshes (or empty one) + * Returning mesh is depended on modifieier's operation (sergey) */ result = get_quick_derivedMesh(derivedData, dm, bmd->operation); if(result == NULL) { @@ -151,7 +151,7 @@ static DerivedMesh *applyModifier(ModifierData *md, Object *ob, } /* if new mesh returned, return it; otherwise there was - * an error, so delete the modifier object */ + * an error, so delete the modifier object */ if(result) return result; else -- cgit v1.2.3