diff --git a/stylus-sdk/src/abi/mod.rs b/stylus-sdk/src/abi/mod.rs index 5cc314c..dfa131a 100644 --- a/stylus-sdk/src/abi/mod.rs +++ b/stylus-sdk/src/abi/mod.rs @@ -80,7 +80,7 @@ where /// The router_entrypoint calls the constructor when the selector is CONSTRUCTOR_SELECTOR. /// The implementation should: decode the calldata and pass the parameters to the user-defined /// constructor; and call internal::constructor_guard to ensure it is only executed once. - /// The constructor is assumed to be payable and doesn't need a #[paylable] annotation. + /// The constructor is assumed to be payable and doesn't need a #[payable] annotation. /// Since each constructor has its own set of parameters, this function won't call the /// constructors for inherited structs automatically. Instead, the user-defined function should /// call the base classes constructors.