Skip to content

Commit

Permalink
Fix 002_tail_penultimate description (#2659)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaolan authored Sep 10, 2024
1 parent bbac484 commit 5adc4f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/exercises/002_tail_penultimate.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ val last_two : 'a list -> ('a * 'a) option = <fun>

# Statement

Find the last but one (last and penultimate) elements of a list.
Find the last two (last and penultimate) elements of a list.

```ocaml
# last_two ["a"; "b"; "c"; "d"];;
Expand Down

0 comments on commit 5adc4f7

Please sign in to comment.