diff --git a/source/blender/blenkernel/BKE_node_runtime.hh b/source/blender/blenkernel/BKE_node_runtime.hh index 2d7c354b0ae..617dd5e0bee 100644 --- a/source/blender/blenkernel/BKE_node_runtime.hh +++ b/source/blender/blenkernel/BKE_node_runtime.hh @@ -288,7 +288,7 @@ class bNodeRuntime : NonCopyable, NonMovable { /** Update flags. */ int update = 0; - /** Offset that will be added to locx for insert offset animation. */ + /** Offset that will be added to #bNote::locx for insert offset animation. */ float anim_ofsx; /** List of cached internal links (input to output), for muted nodes and operators. */ diff --git a/source/blender/blenkernel/intern/node_tree_interface.cc b/source/blender/blenkernel/intern/node_tree_interface.cc index b62838093d2..77bf69f27ee 100644 --- a/source/blender/blenkernel/intern/node_tree_interface.cc +++ b/source/blender/blenkernel/intern/node_tree_interface.cc @@ -758,7 +758,7 @@ int bNodeTreeInterfacePanel::find_valid_insert_position_for_item( break; } if (items[test_pos]->item_type == NODE_INTERFACE_PANEL) { - /* Found valid position, insering moves the first panel. */ + /* Found valid position, inserting moves the first panel. */ pos = test_pos; break; } diff --git a/source/blender/blenloader/intern/versioning_400.cc b/source/blender/blenloader/intern/versioning_400.cc index 3a85f1b7435..61617a9afe5 100644 --- a/source/blender/blenloader/intern/versioning_400.cc +++ b/source/blender/blenloader/intern/versioning_400.cc @@ -984,7 +984,7 @@ void blo_do_versions_400(FileData *fd, Library * /*lib*/, Main *bmain) FOREACH_NODETREE_END; } else { - /* Legacy node tree sockets are created for forward compatibilty, + /* Legacy node tree sockets are created for forward compatibility, * but have to be freed after loading and versioning. */ FOREACH_NODETREE_BEGIN (bmain, ntree, id) { /* Clear legacy sockets after conversion. diff --git a/source/blender/geometry/intern/mesh_split_edges.cc b/source/blender/geometry/intern/mesh_split_edges.cc index 66a07ddfa49..b067e45e258 100644 --- a/source/blender/geometry/intern/mesh_split_edges.cc +++ b/source/blender/geometry/intern/mesh_split_edges.cc @@ -115,7 +115,7 @@ static BitVector<> selection_to_bit_vector(const IndexMask &selection, const int /** * Used for fanning around the corners connected to a vertex. * - * Depending on the winding direction of neighboring faces, travelling from a corner across an edge + * Depending on the winding direction of neighboring faces, traveling from a corner across an edge * to a different face can give a corner that uses a different vertex than the original. To find * the face's corner that uses the original vertex, we may have to use the next corner instead. */ diff --git a/source/blender/windowmanager/wm_window.hh b/source/blender/windowmanager/wm_window.hh index ba3fce0efb1..d7f0eb04207 100644 --- a/source/blender/windowmanager/wm_window.hh +++ b/source/blender/windowmanager/wm_window.hh @@ -114,8 +114,10 @@ void wm_window_IME_begin(wmWindow *win, int x, int y, int w, int h, bool complet void wm_window_IME_end(wmWindow *win); #endif -/** Effectively remove timers from the list and delete them. Calling this should only be done by - * internal WM management code, from specific, safe places. */ +/** + * Effectively remove timers from the list and delete them. Calling this should only be done by + * internal WM management code, from specific, safe places. + */ void wm_window_timers_delete_removed(wmWindowManager *wm); /* *************** window operators ************** */