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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-03-11 13:39:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-11 13:39:56 +0300
commit8b2072868d5057bf9a3da52b8d27d13b11c8ae18 (patch)
tree5937c0d55d6ba9c41b5c2bc1f70de21535607717 /source/blender/makesrna/intern/rna_particle.c
parent796683db8edb98adf2165fed458d08454cb7c977 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/makesrna/intern/rna_particle.c')
-rw-r--r--source/blender/makesrna/intern/rna_particle.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesrna/intern/rna_particle.c b/source/blender/makesrna/intern/rna_particle.c
index 9aeaf4e83dd..3747dd53b97 100644
--- a/source/blender/makesrna/intern/rna_particle.c
+++ b/source/blender/makesrna/intern/rna_particle.c
@@ -188,9 +188,9 @@ static void rna_ParticleHairKey_location_object_info(PointerRNA *ptr,
* not a very efficient way of getting hair key location data,
* but it's the best we've got at the present
*
- * IDEAS: include additional information in pointerRNA beforehand,
- * for example a pointer to the ParticleStstemModifierData to which the
- * hairkey belongs.
+ * IDEAS: include additional information in PointerRNA beforehand,
+ * for example a pointer to the ParticleSystemModifierData to which the
+ * hair-key belongs.
*/
for (md = ob->modifiers.first; md; md = md->next) {
@@ -199,9 +199,9 @@ static void rna_ParticleHairKey_location_object_info(PointerRNA *ptr,
if (psmd && psmd->mesh_final && psmd->psys) {
psys = psmd->psys;
for (i = 0, pa = psys->particles; i < psys->totpart; i++, pa++) {
- /* hairkeys are stored sequentially in memory, so we can
+ /* Hair-keys are stored sequentially in memory, so we can
* find if it's the same particle by comparing pointers,
- * without having to iterate over them all */
+ * without having to iterate over them all. */
if ((hkey >= pa->hair) && (hkey < pa->hair + pa->totkey)) {
*psmd_pt = psmd;
*pa_pt = pa;