Cleanup: Typo in comments.

This commit is contained in:
Bastien Montagne 2020-03-11 17:29:20 +01:00
parent a54e17e52d
commit a9c0ad53e2
2 changed files with 4 additions and 4 deletions

View File

@ -91,11 +91,11 @@ typedef struct LibraryIDLinkCallbackData {
void *user_data;
/**
* 'Real' ID, the one that might be in bmain, only differs from self_id when the later is an
* embeded one.
* embedded one.
*/
struct ID *id_owner;
/**
* ID from which the current ID pointer is being processed. It may be an embeded ID like master
* ID from which the current ID pointer is being processed. It may be an embedded ID like master
* collection or root node tree.
*/
struct ID *id_self;

View File

@ -105,8 +105,8 @@ static int foreach_libblock_remap_callback(LibraryIDLinkCallbackData *cb_data)
ID *old_id = id_remap_data->old_id;
ID *new_id = id_remap_data->new_id;
/* Those asserts ensure the general sanity of ID tags regarding 'embeded' ID data (root nodetrees
* and co). */
/* Those asserts ensure the general sanity of ID tags regarding 'embedded' ID data (root
* nodetrees and co). */
BLI_assert(id_owner == id_remap_data->id_owner);
BLI_assert(id_self == id_owner || (id_self->flag & LIB_EMBEDDED_DATA) != 0);