From 472e6ac1135a7411993fce77142084d81c17de86 Mon Sep 17 00:00:00 2001 From: Matt Riedemann Date: Sat, 25 Sep 2021 05:33:09 -0500 Subject: [PATCH] docs: fix docs typo (#909) --- docs/rules/no-done-callback.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/no-done-callback.md b/docs/rules/no-done-callback.md index b8988f023..8b2ad027c 100644 --- a/docs/rules/no-done-callback.md +++ b/docs/rules/no-done-callback.md @@ -3,7 +3,7 @@ When calling asynchronous code in hooks and tests, `jest` needs to know when the asynchronous work is complete to progress the current run. -Originally the most common pattern to archive this was to use callbacks: +Originally the most common pattern to achieve this was to use callbacks: ```js test('the data is peanut butter', done => {