Skip to content

Commit

Permalink
cutil: Fix typos in comments
Browse files Browse the repository at this point in the history
All of them were found by codespell.

Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed Sep 14, 2015
1 parent 5378679 commit 55c81cb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cutil/listio.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include "oldlist.h"

/*----------------------------------------------------------------------------
Public Funtion Prototypes
Public Function Prototypes
--------------------------------------------------------------------------*/
LIST read_list(const char *filename);
#endif
2 changes: 1 addition & 1 deletion cutil/oldlist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ LIST s_adjoin(LIST var_list, void *variable, int_compare compare) {
*
* Search list, return NIL_LIST if not found. Return the list starting from
* the item if found. The compare routine "is_equal" is passed in as
* the third paramter to this routine. If the value NULL is supplied
* the third parameter to this routine. If the value NULL is supplied
* for is_equal, the is_key routine will be used.
**********************************************************************/
LIST search(LIST list, void *key, int_compare is_equal) {
Expand Down
2 changes: 1 addition & 1 deletion cutil/oldlist.h
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ first_node (list_rest (l))
first_node (list_rest (list_rest (l)))

/*----------------------------------------------------------------------
Public Funtion Prototypes
Public Function Prototypes
----------------------------------------------------------------------*/
int count(LIST var_list);

Expand Down

0 comments on commit 55c81cb

Please sign in to comment.