Skip to content

Commit

Permalink
Update recursive-types.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jessiemongeon1 authored Sep 27, 2024
1 parent 82c880f commit 8a8c40e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/md/writing-motoko/recursive-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A recursive type is a type that contains the values of the same type. Recursive

Motoko supports linked lists, one data structure that implements recursive types.

## Recursive types
## Recursive lists

``` motoko no-repl
type List<T> = ?(T, List<T>);
Expand Down

0 comments on commit 8a8c40e

Please sign in to comment.