From 2df46f867b63eb4cd648c6cabdf83e59cde40f75 Mon Sep 17 00:00:00 2001 From: Samuel Moelius <35515885+smoelius@users.noreply.github.com> Date: Tue, 6 May 2025 11:04:32 -0400 Subject: [PATCH] Fix typo in codegen/dispatch/polkadot.rs Signed-off-by: Samuel Moelius <35515885+smoelius@users.noreply.github.com> --- src/codegen/dispatch/polkadot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/codegen/dispatch/polkadot.rs b/src/codegen/dispatch/polkadot.rs index 3cbbcc94b..536e320db 100644 --- a/src/codegen/dispatch/polkadot.rs +++ b/src/codegen/dispatch/polkadot.rs @@ -15,7 +15,7 @@ use solang_parser::pt::{FunctionTy, Loc::Codegen}; use std::fmt::{Display, Formatter, Result}; /// On Polkadot, contracts export a `call` and a `deploy` function. -/// The `contracts` pallet will invoke `deploy` on contract instatiation, +/// The `contracts` pallet will invoke `deploy` on contract instantiation, /// and `call` on any contract calls after the instantiation. /// /// On Ethereum, constructors do not exist on-chain; they are only executed once.