Skip to content

Commit

Permalink
Fixed Minor Typo
Browse files Browse the repository at this point in the history
I know this is small, but I thought I'd PR, anyway.
  • Loading branch information
jerhage authored and labuladong committed Mar 16, 2022
1 parent 5640976 commit cd56677
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ void traverse(ListNode head) {
}

void traverse(ListNode head) {
// recusively head.val
// recursively head.val
traverse(head.next)
}
```
Expand Down

0 comments on commit cd56677

Please sign in to comment.