From 61a66e413a64eda043149d6619013c52c3af5be5 Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Thu, 2 Nov 2023 14:35:19 -0400 Subject: [PATCH] docs: fixed typo in ens cookbook (#4401) --- docs.wrm/cookbook/ens.wrm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs.wrm/cookbook/ens.wrm b/docs.wrm/cookbook/ens.wrm index c0ac3896ea..845a53f6b7 100644 --- a/docs.wrm/cookbook/ens.wrm +++ b/docs.wrm/cookbook/ens.wrm @@ -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);