Skip to content

Commit 6d30a75

Browse files
roushoubucanero
andauthored
chore: fix typos (#2865)
Co-authored-by: Damián Parrino <[email protected]>
1 parent 1ac77c0 commit 6d30a75

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/ai/shade-agents/tutorials/ai-dao/dao-agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Having retrieved both the proposal and manifesto, the agent is ready to make its
4343

4444
## Voting with an LLM
4545

46-
To make a decision on the proposal, the agent uses an LLM provided by [NEAR AI](https://docs.near.ai/cloud/get-started/). NEAR AI provides verifiable and private inference by running LLMs in GPU TEEs. In this tutorial, the DAO uses NEAR AI for its `verifiable` component. This allows the agent verify that no one is interfering with the the LLM response, as could happen with centralized model hosting. The agent knows the response from the LLM is actually a function of the input, and comes from the expected model.
46+
To make a decision on the proposal, the agent uses an LLM provided by [NEAR AI](https://docs.near.ai/cloud/get-started/). NEAR AI provides verifiable and private inference by running LLMs in GPU TEEs. In this tutorial, the DAO uses NEAR AI for its `verifiable` component. This allows the agent verify that no one is interfering with the LLM response, as could happen with centralized model hosting. The agent knows the response from the LLM is actually a function of the input, and comes from the expected model.
4747

4848
:::note
4949
In this tutorial, the agent does not actually verify the attestation from the LLM. Full verification will be added in a future update to the tutorial.

docs/chain-abstraction/intents/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ NEAR Intents is a multichain transaction protocol where users specify what they
1313

1414
1. **Intent Creation**: A user or AI agent expresses a desired outcome _(ex: Swap Token A for Token B)_ and broadcasts the intent to network of Market Makers (also called Solvers).
1515

16-
2. **Market Makers Compete**: A off-chain decentralized network of Market Makers (aka solvers) compete to fulfill the request in the most optimal way. When the network finds the best solution, it presents it as a quote to the originating user/agent for approval.
16+
2. **Market Makers Compete**: An off-chain decentralized network of Market Makers (aka solvers) compete to fulfill the request in the most optimal way. When the network finds the best solution, it presents it as a quote to the originating user/agent for approval.
1717

1818
4. **Intent Execution**: If the quote from the Market Maker is accepted, the intent is executed by calling a "Verifier" smart contract on NEAR Protocol. This contract securely verifies and settles the final transaction.
1919

docs/primitives/ft/ft.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ To know how many coins a user has you will need to query the method `ft_balance_
302302
---
303303

304304
## Registering a User
305-
In order for an user to own and transfer tokens they need to first **register** in the contract. This is done by calling `storage_deposit` and attaching 0.00125Ⓝ.
305+
In order for a user to own and transfer tokens they need to first **register** in the contract. This is done by calling `storage_deposit` and attaching 0.00125Ⓝ.
306306

307307
By calling this `storage_deposit` the user can register themselves or **register other users**.
308308

docs/primitives/linkdrop/linkdrop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ await callMethod({
261261
senderId: accountId,
262262
// This balance per use is balance of human readable FTs per use.
263263
amount: "1"
264-
// Alternatively, you could use absoluteAmount, which is dependant on the decimals value of the FT
264+
// Alternatively, you could use absoluteAmount, which is dependent on the decimals value of the FT
265265
// ex. if decimals of an ft = 8, then 1 FT token would be absoluteAmount = 100000000
266266
},
267267
},

docs/smart-contracts/security/checklist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Check our [security articles](./welcome.md) to understand how to improve the sec
2020

2121
## Storage
2222
3. Each time the state grows it is ensured that there is enough balance to cover it
23-
4. All collections (i.e. Vector, Map, Tree, etc) have an unique id
23+
4. All collections (i.e. Vector, Map, Tree, etc) have a unique id
2424
5. Check for underflow and overflow!. In rust, you can do this by simply adding the `overflow-checks = true` flag in your `Cargo.toml`.
2525

2626
## Actions

0 commit comments

Comments
 (0)