Skip to content

Commit

Permalink
Update 99_labs.md
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanThatOneKid committed Apr 25, 2024
1 parent 5d1c4ed commit e8ba86c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/04_examples/99_labs.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ const notesLab = new Lab()
)
.procedure(
"notes.get",
({ id }: { id: string }, { notes }) => notes.get(id),
({ id }: { id: string }, { notes }) => {
return notes.get(id);
},
["notes"],
);

Expand Down

0 comments on commit e8ba86c

Please sign in to comment.