Fixed some typos, courtesy of codespell

This commit is contained in:
Tobias Brunner
2018-02-13 12:19:54 +01:00
parent 60c750181f
commit 2db6d5b8b3
75 changed files with 95 additions and 95 deletions
+1 -1
View File
@@ -195,7 +195,7 @@ struct linked_list_t {
* If a linked list contains objects with function pointers,
* invoke() can call a method on each of the objects. The
* method is specified by an offset of the function pointer,
* which can be evalutated at compile time using the offsetof
* which can be evaluated at compile time using the offsetof
* macro, e.g.: list->invoke(list, offsetof(object_t, method));
*
* @param offset offset of the method to invoke on objects