From 04485dafb7c97163a334e8864299a82e2d9b6d68 Mon Sep 17 00:00:00 2001 From: zakingslayerv22 <11926638+zakingslayerv22@users.noreply.github.com> Date: Tue, 22 Apr 2025 10:16:07 -0400 Subject: [PATCH] Update MockFunctions.md I think that sounded better. "specific assertion" instead of "specific of an assertion" --- website/versioned_docs/version-29.7/MockFunctions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/versioned_docs/version-29.7/MockFunctions.md b/website/versioned_docs/version-29.7/MockFunctions.md index 0801739e8406..ce5b9dff9057 100644 --- a/website/versioned_docs/version-29.7/MockFunctions.md +++ b/website/versioned_docs/version-29.7/MockFunctions.md @@ -316,7 +316,7 @@ expect(mockFunc.mock.calls[mockFunc.mock.calls.length - 1]).toEqual([ ]); // The first arg of the last call to the mock function was `42` -// (note that there is no sugar helper for this specific of an assertion) +// (note that there is no sugar helper for this specific assertion) expect(mockFunc.mock.calls[mockFunc.mock.calls.length - 1][0]).toBe(42); // A snapshot will check that a mock was invoked the same number of times,