Skip to content

Commit

Permalink
docs: fix some comments (#1779)
Browse files Browse the repository at this point in the history
Signed-off-by: piguagua <piguagua@aliyun.com>
Co-authored-by: Lavinia Talpas <den_lavi@yahoo.com>
  • Loading branch information
piguagua and laviniat1996 authored Jun 11, 2024
1 parent f1681fe commit 8cc22fd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/deprecated/deploy-a-gnosis-safe-on-your-evm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 8cc22fd

Please sign in to comment.