Skip to content

Commit

Permalink
docs: fixed typo in ens cookbook (ethers-io#4401)
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Nov 2, 2023
1 parent 22b7a2c commit 61a66e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs.wrm/cookbook/ens.wrm
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async function getTextRecords(_provider, name) {
// Filter the *unique* keys
const keys = [ ...(new Set(logs.map((log) => log.args.key))) ];

// Get the values for the keys; failures are discard
// Get the values for the keys; failures are discarded
const values = await Promise.all(keys.map((key) => {
try {
return resolver.getText(key);
Expand Down

0 comments on commit 61a66e4

Please sign in to comment.