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,