Skip to content

Commit 55c81cb

Browse files
committed
cutil: Fix typos in comments
All of them were found by codespell. Signed-off-by: Stefan Weil <[email protected]>
1 parent 5378679 commit 55c81cb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cutil/listio.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
#include "oldlist.h"
3838

3939
/*----------------------------------------------------------------------------
40-
Public Funtion Prototypes
40+
Public Function Prototypes
4141
--------------------------------------------------------------------------*/
4242
LIST read_list(const char *filename);
4343
#endif

cutil/oldlist.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ LIST s_adjoin(LIST var_list, void *variable, int_compare compare) {
407407
*
408408
* Search list, return NIL_LIST if not found. Return the list starting from
409409
* the item if found. The compare routine "is_equal" is passed in as
410-
* the third paramter to this routine. If the value NULL is supplied
410+
* the third parameter to this routine. If the value NULL is supplied
411411
* for is_equal, the is_key routine will be used.
412412
**********************************************************************/
413413
LIST search(LIST list, void *key, int_compare is_equal) {

cutil/oldlist.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ first_node (list_rest (l))
234234
first_node (list_rest (list_rest (l)))
235235

236236
/*----------------------------------------------------------------------
237-
Public Funtion Prototypes
237+
Public Function Prototypes
238238
----------------------------------------------------------------------*/
239239
int count(LIST var_list);
240240

0 commit comments

Comments
 (0)