Skip to content

Commit

Permalink
docs(develop): fix typos (#1156)
Browse files Browse the repository at this point in the history
fix typos

task: none
  • Loading branch information
omahs authored Jun 3, 2024
1 parent 67569f4 commit 5a82bb8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/site/docs/develop/testnet/testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Before you deploy your project to any network, you will need native tokens for t

#### `portalAddress`

The value for `portalAddress` should be updated to the address of the deployed Omni portals. This can be found in the relavant addresses page for the Omni Omega testnet which will be shared soon.
The value for `portalAddress` should be updated to the address of the deployed Omni portals. This can be found in the relevant addresses page for the Omni Omega testnet which will be shared soon.

### Deployment

Expand Down
2 changes: 1 addition & 1 deletion docs/site/docs/develop/xapp/example.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function isXCall() internal view returns (bool) {
}
```

Note that not only does `isXCall` check with the portal that the current transaction is an `xcall`, it also confirms the sender is the portal itself. This helps avoid mistaking calls later in an `xcall` stacktrace with the original `xcall`. Using this helper, we can ensure that `greet()` can only every be called via an `xcall`.
Note that not only does `isXCall` check with the portal that the current transaction is an `xcall`, it also confirms the sender is the portal itself. This helps avoid mistaking calls later in an `xcall` stacktrace with the original `xcall`. Using this helper, we can ensure that `greet()` can only ever be called via an `xcall`.

```solidity
function greet(string calldata greeting) external xrecv {
Expand Down
2 changes: 1 addition & 1 deletion docs/site/docs/develop/xapp/fees.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import GitHubCodeBlock from '@site/src/components/GitHubCodeBlock/GitHubCodeBloc

# Fees

Omni charges fees for each `xcall`. These fees are paid synchronously on the soruce chain, in the chain's native token. For most rollups, this is ETH.
Omni charges fees for each `xcall`. These fees are paid synchronously on the source chain, in the chain's native token. For most rollups, this is ETH.

## Fee Calculation

Expand Down

0 comments on commit 5a82bb8

Please sign in to comment.