Skip to content

Commit 2d66577

Browse files
committed
fix type error in comparing-custom-types hint
1 parent 6b44d2a commit 2d66577

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hints/comparing-custom-types.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ get (Id id) (Table _ dict) =
5050
add : info -> Table info -> (Table info, Id)
5151
add info (Table nextId dict) =
5252
( Table (nextId + 1) (Dict.insert nextId info dict)
53-
, nextId
53+
, Id nextId
5454
)
5555
```
5656

0 commit comments

Comments
 (0)