Cleanup: spelling in comments & some corrections

This commit is contained in:
2023-05-20 21:17:09 +10:00
parent 1d6eb9bc93
commit bf36a61e62
42 changed files with 84 additions and 76 deletions

View File

@@ -2640,7 +2640,7 @@ static PyObject *Vector_swizzle_get(VectorObject *self, void *closure)
* Set the items of this vector using a swizzle.
* - If value is a vector or list this operates like an array copy, except that
* the destination is effectively re-ordered as defined by the swizzle. At
* most min(len(source), len(dest)) values will be copied.
* most `min(len(source), len(destination))` values will be copied.
* - If the value is scalar, it is copied to all axes listed in the swizzle.
* - If an axis appears more than once in the swizzle, the final occurrence is
* the one that determines its value.