From b5d31101103586798b8c400b1d2b76afc5efcd7c Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Sun, 22 Jun 2025 13:28:50 +0200 Subject: [PATCH] Update page.mdx Signed-off-by: kilavvy <140459108+kilavvy@users.noreply.github.com> --- .../get-started/create-module-contract/page.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }