Skip to content

Commit

Permalink
Update chain.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
fResult authored Jun 11, 2024
1 parent 069b26c commit 7744359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/curry/chain.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const gods: Deity[] = [
{ rank: 9, name: 'Loki' }
]

const getName = (god: Deity) => item.name
const getName = (god: Deity) => god.name
const upperCase = (text: string) => text.toUpperCase() as Uppercase<string>

const getUpperName = chain(
Expand Down

0 comments on commit 7744359

Please sign in to comment.