diff --git a/aptos-move/framework/aptos-token/doc/token_event_store.md b/aptos-move/framework/aptos-token/doc/token_event_store.md index a4df972d5ff16..0bf70febb7554 100644 --- a/aptos-move/framework/aptos-token/doc/token_event_store.md +++ b/aptos-move/framework/aptos-token/doc/token_event_store.md @@ -566,7 +566,7 @@ Event emitted when the token maximum is mutated
-extention: option::Option<any::Any> +extension: option::Option<any::Any>
This is for adding new events in future @@ -603,7 +603,7 @@ Event emitted when the token maximum is mutated description_mutate_events: account::new_event_handle<DescriptionMutateEvent>(acct), royalty_mutate_events: account::new_event_handle<RoyaltyMutateEvent>(acct), maximum_mutate_events: account::new_event_handle<MaxiumMutateEvent>(acct), - extention: option::none<Any>(), + extension: option::none<Any>(), }); }; } diff --git a/aptos-move/framework/aptos-token/sources/token_event_store.move b/aptos-move/framework/aptos-token/sources/token_event_store.move index 1cd2ea9bf20cd..52ba6c7c69ce0 100644 --- a/aptos-move/framework/aptos-token/sources/token_event_store.move +++ b/aptos-move/framework/aptos-token/sources/token_event_store.move @@ -118,7 +118,7 @@ module aptos_token::token_event_store { royalty_mutate_events: EventHandle, maximum_mutate_events: EventHandle, /// This is for adding new events in future - extention: Option, + extension: Option, } fun initialize_token_event_store(acct: &signer){ @@ -133,7 +133,7 @@ module aptos_token::token_event_store { description_mutate_events: account::new_event_handle(acct), royalty_mutate_events: account::new_event_handle(acct), maximum_mutate_events: account::new_event_handle(acct), - extention: option::none(), + extension: option::none(), }); }; }