Skip to content

Commit b1c447f

Browse files
committed
fix typos
1 parent 4e6fde5 commit b1c447f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

listings/getting-started/testing_how_to/tests/test_contract.cairo

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use testing_how_to::{IInventoryContractDispatcher, IInventoryContractDispatcherT
44

55
// Import the required traits and functions from Snforge
66
use snforge_std::{ContractClassTrait, DeclareResultTrait, declare};
7-
// And additionaly the testing utilities
7+
// And additionally the testing utilities
88
use snforge_std::{start_cheat_caller_address_global, stop_cheat_caller_address_global, load};
99

1010
// Declare and deploy the contract and return its dispatcher.
@@ -38,7 +38,7 @@ fn test_as_owner() {
3838
contract.update_inventory(10);
3939
assert_eq!(contract.get_inventory_count(), 10);
4040

41-
// Additionaly, you can directly test the storage
41+
// additionally, you can directly test the storage
4242
let loaded = load(
4343
contract.contract_address, // the contract address
4444
selector!("owner"), // field marking the start of the memory chunk being read from

0 commit comments

Comments
 (0)