diff --git a/docs/api/index.md b/docs/api/index.md index 43d3987e9daf..d366d8ffbf23 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -1173,7 +1173,7 @@ When you use `test` in the top level of file, they are collected as part of the sell('apples') - expect(sell).toHaveReturnedWith({ procuct: 'apples' }) + expect(sell).toHaveReturnedWith({ product: 'apples' }) }) ``` @@ -1192,7 +1192,7 @@ When you use `test` in the top level of file, they are collected as part of the sell('apples') sell('bananas') - expect(sell).toHaveLastReturnedWith({ procuct: 'bananas' }) + expect(sell).toHaveLastReturnedWith({ product: 'bananas' }) }) ```