diff --git a/docs/deprecated/deploy-a-gnosis-safe-on-your-evm.md b/docs/deprecated/deploy-a-gnosis-safe-on-your-evm.md index 44d15262623..e97b64275d9 100644 --- a/docs/deprecated/deploy-a-gnosis-safe-on-your-evm.md +++ b/docs/deprecated/deploy-a-gnosis-safe-on-your-evm.md @@ -711,7 +711,7 @@ Output: ```zsh Transferring ownership of ProxyAdmin... -✔ 0x1189D8E94cAD398612cc4638f80B18d421e74a31 (transparent) proxy ownership transfered through admin proxy +✔ 0x1189D8E94cAD398612cc4638f80B18d421e74a31 (transparent) proxy ownership transferred through admin proxy Transferred ownership of ProxyAdmin to: 0xCA2922E98339C359D818b8f7ad3c897C0e18a7ff ``` diff --git a/docs/deprecated/tutorials-contest/2021/avalanche-DAO/README.md b/docs/deprecated/tutorials-contest/2021/avalanche-DAO/README.md index 7a8e12fe940..df6f933db03 100644 --- a/docs/deprecated/tutorials-contest/2021/avalanche-DAO/README.md +++ b/docs/deprecated/tutorials-contest/2021/avalanche-DAO/README.md @@ -107,7 +107,7 @@ enum Status { Accepted, Rejected, Pending } ``` For the other proposal properties we can use an `struct` type. -`Structs` alow us to define a custom group of properties. **[see more about +`Structs` allow us to define a custom group of properties. **[see more about structs](https://docs.soliditylang.org/en/v0.8.7/types.html#structs)** ```solidity diff --git a/docs/deprecated/tutorials-contest/2021/avax-chat-dapp/README.md b/docs/deprecated/tutorials-contest/2021/avax-chat-dapp/README.md index f4df0da9db7..9950b536e97 100644 --- a/docs/deprecated/tutorials-contest/2021/avax-chat-dapp/README.md +++ b/docs/deprecated/tutorials-contest/2021/avax-chat-dapp/README.md @@ -541,7 +541,7 @@ export function App( props ) { } } - // Sends messsage to an user + // Sends message to an user async function sendMessage( data ) { if( !( activeChat && activeChat.publicKey ) ) return; const recieverAddress = activeChat.publicKey; diff --git a/docs/deprecated/tutorials-contest/2021/drizzle-auction-manager/frontend/Auction.js.md b/docs/deprecated/tutorials-contest/2021/drizzle-auction-manager/frontend/Auction.js.md index 0609e1b576a..d0f08913d89 100644 --- a/docs/deprecated/tutorials-contest/2021/drizzle-auction-manager/frontend/Auction.js.md +++ b/docs/deprecated/tutorials-contest/2021/drizzle-auction-manager/frontend/Auction.js.md @@ -21,7 +21,7 @@ function Auction() { }); const [auctionAnalyticsCacheKey, setAuctionAnalyticsCacheKey] = useState(null); - // Setting up cache calls for requried functions + // Setting up cache calls for required functions const cacheCalls = { isRegistered: subscriber?.isRegistered[cacheKeys?.isRegistered]?.value, user: subscriber?.users[cacheKeys?.uId]?.value,