[Bf-blender-cvs] [330290d2a80] master: Cleanup: typos in comments

Philipp Oeser noreply at git.blender.org
Fri Nov 19 15:57:00 CET 2021


Commit: 330290d2a80d6b78f323cd1df9f3ea333d1cdb53
Author: Philipp Oeser
Date:   Fri Nov 19 15:55:47 2021 +0100
Branches: master
https://developer.blender.org/rB330290d2a80d6b78f323cd1df9f3ea333d1cdb53

Cleanup: typos in comments

===================================================================

M	source/blender/blenkernel/intern/pbvh.c
M	source/blender/compositor/operations/COM_CompositorOperation.cc

===================================================================

diff --git a/source/blender/blenkernel/intern/pbvh.c b/source/blender/blenkernel/intern/pbvh.c
index 3358f3e6dea..2318a05e635 100644
--- a/source/blender/blenkernel/intern/pbvh.c
+++ b/source/blender/blenkernel/intern/pbvh.c
@@ -2798,7 +2798,7 @@ float (*BKE_pbvh_vert_coords_alloc(PBVH *pbvh))[3]
 void BKE_pbvh_vert_coords_apply(PBVH *pbvh, const float (*vertCos)[3], const int totvert)
 {
   if (totvert != pbvh->totvert) {
-    BLI_assert_msg(0, "PBVH: Given deforming vcos number does not natch PBVH vertex number!");
+    BLI_assert_msg(0, "PBVH: Given deforming vcos number does not match PBVH vertex number!");
     return;
   }
 
diff --git a/source/blender/compositor/operations/COM_CompositorOperation.cc b/source/blender/compositor/operations/COM_CompositorOperation.cc
index 354997ebd2e..696dbb1807c 100644
--- a/source/blender/compositor/operations/COM_CompositorOperation.cc
+++ b/source/blender/compositor/operations/COM_CompositorOperation.cc
@@ -155,7 +155,7 @@ void CompositorOperation::execute_region(rcti *rect, unsigned int /*tile_number*
   if (rd->mode & R_BORDER && rd->mode & R_CROP) {
     /**
      * When using cropped render result, need to re-position area of interest,
-     * so it'll natch bounds of render border within frame. By default, canvas
+     * so it'll match bounds of render border within frame. By default, canvas
      * will be centered between full frame and cropped frame, so we use such
      * scheme to map cropped coordinates to full-frame coordinates
      *



More information about the Bf-blender-cvs mailing list