From 462707a53191feee60ef840e05a9db918de718d5 Mon Sep 17 00:00:00 2001 From: Zentex Date: Tue, 3 Feb 2026 22:29:07 +0530 Subject: [PATCH] Fix typo in mock-contract.rst: 'overrride' to 'override' --- docs/source/mock-contract.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/mock-contract.rst b/docs/source/mock-contract.rst index 6e7144701..3f2fe6aa0 100644 --- a/docs/source/mock-contract.rst +++ b/docs/source/mock-contract.rst @@ -22,7 +22,7 @@ You can also choose the deployment address of the mock contract with the options const mockContract = await deployMockContract(wallet, contractAbi, { address: deploymentAddress, - overrride: false // optional, specifies if the contract should be overwritten + override: false // optional, specifies if the contract should be overwritten }) The mock contract can now be integrated into other contracts by using the :code:`address` attribute.