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 <campbell@blender.org>2022-09-28 02:41:31 +0300
committerJeroen Bakker <jeroen@blender.org>2022-10-03 15:59:16 +0300
commite04e712b3df8791b3ca20e6e49456590ce4c1492 (patch)
tree692bffd3392bbf7eb36385509b3f5edc8326a1e0 /source/blender/blenlib
parentcf317dc047ac445c98185d37d92af936de614506 (diff)
Cleanup: spelling in comments
Also add missing task ID.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_convexhull_2d.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_convexhull_2d.h b/source/blender/blenlib/BLI_convexhull_2d.h
index f4e4e4d66f1..044c1da6925 100644
--- a/source/blender/blenlib/BLI_convexhull_2d.h
+++ b/source/blender/blenlib/BLI_convexhull_2d.h
@@ -18,7 +18,7 @@ extern "C" {
* \param r_points: An array of the convex hull vertex indices (max is n).
* \return The number of indices in r_points.
*
- * \note Performance is O(n.log(n)), same as qsort.
+ * \note Performance is `O(n.log(n))`, same as `qsort`.
*
*/
int BLI_convexhull_2d(const float (*points)[2], int n, int r_points[/* n */]);