add a missing 'n' in comment

This commit is contained in:
zhujian 2020-08-06 15:22:10 +08:00
parent 24c539251f
commit 1eb76bf4b5
1 changed files with 2 additions and 2 deletions

View File

@ -217,8 +217,8 @@ void listRewindTail(list *list, listIter *li) {
* listDelNode(), but not to remove other elements.
*
* The function returns a pointer to the next element of the list,
* or NULL if there are no more elements, so the classical usage patter
* is:
* or NULL if there are no more elements, so the classical usage
* pattern is:
*
* iter = listGetIterator(list,<direction>);
* while ((node = listNext(iter)) != NULL) {