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-06 03:40:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-06 03:52:32 +0300
commit8574d68aa0ea123bf3f37ca36fd41b7dcf26403f (patch)
treede142277925e83145085ddb35843d772b250df17 /source/blender/blenlib/BLI_dlrbTree.h
parent6c623b0e8c3773a5aafa577fbad4a65ecd627c8c (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenlib/BLI_dlrbTree.h')
-rw-r--r--source/blender/blenlib/BLI_dlrbTree.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/blenlib/BLI_dlrbTree.h b/source/blender/blenlib/BLI_dlrbTree.h
index 277d9116558..5db0dd16a34 100644
--- a/source/blender/blenlib/BLI_dlrbTree.h
+++ b/source/blender/blenlib/BLI_dlrbTree.h
@@ -74,8 +74,8 @@ typedef struct DLRBT_Tree {
/* Return -1, 0, 1 for whether the given data is less than,
* equal to, or greater than the given node.
- * - node: <DLRBT_Node> the node to compare to
- * - data: pointer to the relevant data or values stored in the bitpattern
+ * - node: <DLRBT_Node> the node to compare to.
+ * - data: pointer to the relevant data or values stored in the bit-pattern.
* dependent on the function.
*/
typedef short (*DLRBT_Comparator_FP)(void *node, void *data);
@@ -85,9 +85,9 @@ typedef short (*DLRBT_Comparator_FP)(void *node, void *data);
*/
typedef DLRBT_Node *(*DLRBT_NAlloc_FP)(void *data);
-/* Update an existing node instance accordingly to be in sync with the given data *
+/* Update an existing node instance accordingly to be in sync with the given data.
* - node: <DLRBT_Node> the node to update.
- * - data: Pointer to the relevant data or values stored in the bitpattern
+ * - data: Pointer to the relevant data or values stored in the bit-pattern.
* dependent on the function.
*/
typedef void (*DLRBT_NUpdate_FP)(void *node, void *data);