From 5a82bb8d6e9264de9c44e0f39f20e9345761cd01 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Mon, 3 Jun 2024 15:47:48 +0200 Subject: [PATCH] docs(develop): fix typos (#1156) fix typos task: none --- docs/site/docs/develop/testnet/testnet.md | 2 +- docs/site/docs/develop/xapp/example.md | 2 +- docs/site/docs/develop/xapp/fees.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/site/docs/develop/testnet/testnet.md b/docs/site/docs/develop/testnet/testnet.md index 714fb27fc..711f4c9f9 100644 --- a/docs/site/docs/develop/testnet/testnet.md +++ b/docs/site/docs/develop/testnet/testnet.md @@ -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 diff --git a/docs/site/docs/develop/xapp/example.md b/docs/site/docs/develop/xapp/example.md index dbaff0d01..ca2c53f2b 100644 --- a/docs/site/docs/develop/xapp/example.md +++ b/docs/site/docs/develop/xapp/example.md @@ -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 { diff --git a/docs/site/docs/develop/xapp/fees.md b/docs/site/docs/develop/xapp/fees.md index 429c17128..0685f13a7 100644 --- a/docs/site/docs/develop/xapp/fees.md +++ b/docs/site/docs/develop/xapp/fees.md @@ -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