From b982f4f089b6154103b9e3061feee9b5ca80c491 Mon Sep 17 00:00:00 2001 From: asttool Date: Fri, 10 Oct 2025 14:28:12 +0800 Subject: [PATCH] chore: fix some typos Signed-off-by: asttool --- client/scripts/supersede_level.mjs | 2 +- client/src/constants.js | 2 +- contracts/test/metrics/Player.t.sol | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/scripts/supersede_level.mjs b/client/scripts/supersede_level.mjs index 50193bc63..087408093 100644 --- a/client/scripts/supersede_level.mjs +++ b/client/scripts/supersede_level.mjs @@ -197,7 +197,7 @@ async function printLevelInfo(level) { } async function deployAndUpgradeStatisticsToStatisticsSuperseder() { - console.log(colors.bold.yellow("\nDeploing and Ugrading statistics contract to statisticsSuperseder...")); + console.log(colors.bold.yellow("\nDeploing and Upgrading statistics contract to statisticsSuperseder...")); const props = { gasPrice: parseInt(await web3.eth.getGasPrice() * 1.10), diff --git a/client/src/constants.js b/client/src/constants.js index 24ccaccbb..31a6befdf 100644 --- a/client/src/constants.js +++ b/client/src/constants.js @@ -115,7 +115,7 @@ export const NETWORKS_INGAME = { }, }; -// Deprectated networks +// Deprecated networks // status: {deprecated | deprecation-planned} export const NETWORKS_DEPRECATION = { GOERLI: { diff --git a/contracts/test/metrics/Player.t.sol b/contracts/test/metrics/Player.t.sol index 7984f14fd..563ce9b89 100644 --- a/contracts/test/metrics/Player.t.sol +++ b/contracts/test/metrics/Player.t.sol @@ -123,7 +123,7 @@ contract TestPlayer is Test { uint256 totalLevelsFailed = stats.getTotalNoOfFailedSubmissionsByPlayer(user); assertEq(totalLevelsFailed, 2); - // should return percentange of levels completed + // should return percentage of levels completed uint256 percentage = stats.getPercentageOfLevelsCompleted(user); assertEq(percentage, 0.5 ether);