diff --git a/apps/portal/src/app/contracts/modular-contracts/get-started/create-module-contract/page.mdx b/apps/portal/src/app/contracts/modular-contracts/get-started/create-module-contract/page.mdx index 5c4522b3545..67a74727944 100644 --- a/apps/portal/src/app/contracts/modular-contracts/get-started/create-module-contract/page.mdx +++ b/apps/portal/src/app/contracts/modular-contracts/get-started/create-module-contract/page.mdx @@ -287,7 +287,7 @@ library CounterStorage { - Lastly, set up the `getModuleConfig` functionallity as this is the one which is responsible for communicating to the core contract: + Lastly, set up the `getModuleConfig` functionality as this is the one which is responsible for communicating to the core contract: ```solidity //SPDX-License-Identifier: MIT @@ -330,7 +330,7 @@ contract CounterModule is Module { config.requiredInterfaces = new bytes4[](1); config.requiredInterfaces[0] = 0x00000001; - // register the intallation callback + // register the installation callback config.registerInstallationCallback = true; }