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>2019-07-07 08:38:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-07-07 08:38:41 +0300
commitcd6b49f995fdca5240a9b97fa99b4dd669a047ea (patch)
tree5bdef2750238555e149891e6278a27e9ca5b26ef /source/blender/editors/util
parenta3e2076bc4f7330188fbb1b3338c9235a7b0bc96 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/util')
-rw-r--r--source/blender/editors/util/select_buffer_utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/util/select_buffer_utils.c b/source/blender/editors/util/select_buffer_utils.c
index 130f6819e34..79f0f48830e 100644
--- a/source/blender/editors/util/select_buffer_utils.c
+++ b/source/blender/editors/util/select_buffer_utils.c
@@ -44,7 +44,7 @@
/** \name Select Bitmap from ID's
*
* Given a buffer of select ID's, fill in a booleans (true/false) per index.
- * #BLI_bitmap is used for memory effeciency.
+ * #BLI_bitmap is used for memory efficiency.
*
* \{ */
@@ -215,7 +215,7 @@ uint ED_select_buffer_sample_point(const int center[2])
/**
* Find the selection id closest to \a center.
- * \param dist[in,out]: Use to initalize the distance,
+ * \param dist[in,out]: Use to initialize the distance,
* when found, this value is set to the distance of the selection thats returned.
*/
uint ED_select_buffer_find_nearest_to_point(const int center[2],
@@ -223,7 +223,7 @@ uint ED_select_buffer_find_nearest_to_point(const int center[2],
const uint id_max,
uint *dist)
{
- /* Smart function to sample a rect spiralling outside, nice for selection ID. */
+ /* Smart function to sample a rect spiraling outside, nice for selection ID. */
/* Create region around center (typically the mouse cursor).
* This must be square and have an odd width,