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
path: root/source
diff options
context:
space:
mode:
authormano-wii <germano.costa@ig.com.br>2019-12-12 18:03:27 +0300
committermano-wii <germano.costa@ig.com.br>2019-12-12 18:03:27 +0300
commit0f04bf8cd68675efc47212f2b1fe490392baf083 (patch)
treec0998bf0384a2193513b6857ea7df16d292c8b73 /source
parent302d692b0b398a6224871ccbc49efdf1580726a5 (diff)
Cleanup: Follow the commenting convention
Capital letter and full stop.
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 0ed9a7f3e5e..0b61e312846 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -1814,10 +1814,10 @@ enum {
typedef struct WeldModifierData {
ModifierData modifier;
- /* the limit below which to merge vertices in adjacent duplicates */
+ /* The limit below which to merge vertices. */
float merge_dist;
unsigned int max_interactions;
- /** Name of vertex group to use to mask, MAX_VGROUP_NAME. */
+ /* Name of vertex group to use to mask, MAX_VGROUP_NAME. */
char defgrp_name[64];
} WeldModifierData;