Fix T54997: simple typo in property description

This commit is contained in:
Philipp Oeser 2018-05-09 14:26:47 +02:00
parent f3efa9e15f
commit 34c474e695
Notes: blender-bot 2023-02-14 08:06:33 +01:00
Referenced by issue #54997, English error
1 changed files with 1 additions and 1 deletions

View File

@ -2609,7 +2609,7 @@ void PARTICLE_OT_remove_doubles(wmOperatorType *ot)
/* properties */
RNA_def_float(ot->srna, "threshold", 0.0002f, 0.0f, FLT_MAX,
"Merge Distance", "Threshold distance withing which particles are removed", 0.00001f, 0.1f);
"Merge Distance", "Threshold distance within which particles are removed", 0.00001f, 0.1f);
}