Skip to content

Commit

Permalink
Fixed List_remove() docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Aug 23, 2010
1 parent 25aed7b commit 7d5d478
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

## void List_remove(List \*self, ListNode *node)

Remove _node_ from the list.
Remove _node_ from the list, freeing it and it's value.

List_remove(list, node);

Expand Down
2 changes: 1 addition & 1 deletion src/list.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ List_at(List *self, int index) {
}

/*
* Remove the given node from the list.
* Remove the given node from the list, freeing it and it's value.
*/

void
Expand Down

0 comments on commit 7d5d478

Please sign in to comment.