Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Typos and Grammar in Documentation #1716

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/advanced/multichain/rpc-reference/hedera-rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ In certain conditions, the Hedera network will return a response that signifies

1. `Object` - Result of transaction submission to Hedera network
1.1. `code` : 9000 - The reserved WalletConnect error code for unknown errors or errors not related to the WalletConnect protocol
1.2. `message` : `String` - A human readable string describing the nature of the failure
1.2. `message` : `String` - A human-readable string describing the nature of the failure
1.3. `data` : `Number` - An integer representing the ResponseCodeEnum value returned from the Hedera Node, which indicates the reason for the failure


Expand Down Expand Up @@ -295,4 +295,4 @@ While constructing a transaction for transmission to a controller, a dApp needs
"nodes": ["0.0.3", "0.0.4"]
}
}
```
```
2 changes: 1 addition & 1 deletion docs/advanced/walletconnectmodal/about.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ More wallet package names can be found in [our sample AndroidManifest.xml](https
Wallet detection may produce inaccurate results on iOS Simulator. It is recommended to test on a real device.

1. Make an iOS build.
2. In the generated Xcode project, find `Info.plist` file and open it with a external editor (i.e. not Xcode).
2. In the generated Xcode project, find `Info.plist` file and open it with an external editor (i.e. not Xcode).
3. Locate or create `<key>LSApplicationQueriesSchemes</key>` section.
4. Add the desired wallet schemes as string entries within the `<array>`. These schemes represent the wallets you want to detect.

Expand Down
8 changes: 4 additions & 4 deletions docs/api/core/pairing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,8 @@ Now wallet and a dapp have a secure communication channel that will be used by t

#### Pairing Dapp Usage

In order to pair dapp and a wallet, dapp needs to generate and share a uri with wallet.
To generate a uri call `create()` function on Pair instance as follows.
In order to pair dapp and a wallet, dapp needs to generate and share an uri with wallet.
To generate an uri call `create()` function on Pair instance as follows.

```swift
let uri = try await Pair.instance.create()
Expand All @@ -337,7 +337,7 @@ Now you can share the uri with the wallet.
val pairing: Pairing? = CoreClient.Pairing.create() { error -> }
```

When first establishing a pairing with a Peer, call `CoreClient.Pairing.create`. This will try and generate a new pairing with a URI parameter that can be used to establish a connection with the other Peer as well as other meta data related to the pairing.
When first establishing a pairing with a Peer, call `CoreClient.Pairing.create`. This will try and generate a new pairing with an URI parameter that can be used to establish a connection with the other Peer as well as other meta data related to the pairing.

#

Expand Down Expand Up @@ -436,7 +436,7 @@ Now the wallet and a dapp have a secure communication channel that will be used

#### Pairing Dapp Usage

In order to pair dapp and a wallet, dapp needs to generate and share a uri with wallet. To generate a uri call `create()` function on Pair instance as follows.
In order to pair dapp and a wallet, dapp needs to generate and share an uri with wallet. To generate an uri call `create()` function on Pair instance as follows.

```csharp

Expand Down
2 changes: 1 addition & 1 deletion docs/appkit/javascript/notifications/cloud-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ It is important to understand what domain you are using for your project as you

You can pick 1 domain and this is configured in the Dapp URL field of the Notify API section of the [WalletConnect Cloud](https://cloud.walletconnect.com). You may change your domain at any time, as long as you properly host the new `did.json` file there. Note that only one project may use a given domain at the same time.

During development it is optional to use your production domain for testing. Instead, you can use a staging domain, or even a entirely separate domain e.g. Vercel test site. However, once you move to production you will need to update your domain to your production domain and host a new file there.
During development it is optional to use your production domain for testing. Instead, you can use a staging domain, or even an entirely separate domain e.g. Vercel test site. However, once you move to production you will need to update your domain to your production domain and host a new file there.

Note that the file must be hosted on a real, publicly accessible, domain in order to verify its legitimacy. The use of `localhost` or other local addresses is not allowed.

Expand Down
2 changes: 1 addition & 1 deletion docs/appkit/migration/from-anza-adapter-react.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ createWeb3Modal({
})
```
:::info
Email an social logins are enabled by default.
Email a social logins are enabled by default.
:::


Expand Down
2 changes: 1 addition & 1 deletion docs/appkit/react/notifications/cloud-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ It is important to understand what domain you are using for your project as you

You can pick 1 domain and this is configured in the Dapp URL field of the Notify API section of the [WalletConnect Cloud](https://cloud.walletconnect.com). You may change your domain at any time, as long as you properly host the new `did.json` file there. Note that only one project may use a given domain at the same time.

During development it is optional to use your production domain for testing. Instead, you can use a staging domain, or even a entirely separate domain e.g. Vercel test site. However, once you move to production you will need to update your domain to your production domain and host a new file there.
During development it is optional to use your production domain for testing. Instead, you can use a staging domain, or even an entirely separate domain e.g. Vercel test site. However, once you move to production you will need to update your domain to your production domain and host a new file there.

Note that the file must be hosted on a real, publicly accessible, domain in order to verify its legitimacy. The use of `localhost` or other local addresses is not allowed.

Expand Down
2 changes: 1 addition & 1 deletion docs/appkit/unity/core/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ To enable Web3Modal to detect wallets installed on mobile devices, you need to m
Wallet detection may produce inaccurate results on iOS Simulator. It is recommended to test on a real device.

1. Make an iOS build.
2. In the generated Xcode project, find `Info.plist` file and open it with a external editor (i.e. not Xcode).
2. In the generated Xcode project, find `Info.plist` file and open it with an external editor (i.e. not Xcode).
3. Locate or create `<key>LSApplicationQueriesSchemes</key>` section.
4. Add the desired wallet schemes as string entries within the `<array>`. These schemes represent the wallets you want to detect.

Expand Down
2 changes: 1 addition & 1 deletion docs/appkit/vue/notifications/cloud-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ It is important to understand what domain you are using for your project as you

You can pick 1 domain and this is configured in the Dapp URL field of the Notify API section of the [WalletConnect Cloud](https://cloud.walletconnect.com). You may change your domain at any time, as long as you properly host the new `did.json` file there. Note that only one project may use a given domain at the same time.

During development it is optional to use your production domain for testing. Instead, you can use a staging domain, or even a entirely separate domain e.g. Vercel test site. However, once you move to production you will need to update your domain to your production domain and host a new file there.
During development it is optional to use your production domain for testing. Instead, you can use a staging domain, or even an entirely separate domain e.g. Vercel test site. However, once you move to production you will need to update your domain to your production domain and host a new file there.

Note that the file must be hosted on a real, publicly accessible, domain in order to verify its legitimacy. The use of `localhost` or other local addresses is not allowed.

Expand Down