From d8417846237c0cf01e5bdef257915a96ebba9486 Mon Sep 17 00:00:00 2001 From: Ned Schwartz Date: Mon, 5 Feb 2024 15:51:57 -0500 Subject: [PATCH] closing bracket --- docs/rules/no-then.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/no-then.md b/docs/rules/no-then.md index c336d5a7..f010fb2d 100644 --- a/docs/rules/no-then.md +++ b/docs/rules/no-then.md @@ -35,7 +35,7 @@ function getProcessedData(url) { async function countProcessedData(url) { const data = await downloadData(url); return data.length -``` +} ```js async function getProcessedData(url) {