Skip to content

Commit 91eaf79

Browse files
Grammar & Clarity Fixes in Documentation (#298)
Hyphenation Fix (examples/agent-kit-langgraph/README.md) General purpose agent → General-purpose agent (correct compound adjective usage). Preposition Fix (guides/add_your_own_tool.md) Add supporting functions in SolanaAgentKit → Add supporting functions to SolanaAgentKit (correct preposition). Article Addition (guides/add_your_own_tool.md) Define Action class for given tool → Define an Action class for given tool (correct article usage). Heading Consistency Fix (guides/add_your_own_tool.md) ### 7. Define Action class for given tool → ### 7. Define an Action class for given tool (matches corrected phrasing).
2 parents d32f990 + aab6d57 commit 91eaf79

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/agent-kit-langgraph/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This example demonstrates how to build an advanced Solana agent using LangGraph
88

99
- Multi-agent architecture using LangGraph's StateGraph
1010
- Specialized agents for different tasks:
11-
- General purpose agent for basic queries (with optional Tavily search integration)
11+
- General-purpose agent for basic queries (with optional Tavily search integration)
1212
- Transfer/Swap agent for transaction operations
1313
- Read agent for blockchain data queries
1414
- Manager agent for routing and orchestration

guides/add_your_own_tool.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ Extending the **Solana Agent Kit** with custom tools allows you to add specializ
66

77
1. Create a new tool file
88
2. Export the new tool
9-
3. Add supporting functions in SolanaAgentKit
9+
3. Add supporting functions to SolanaAgentKit
1010
4. Implement the Langchain tool class
1111
5. Export the Langchain tool
1212
6. Export your protocol's langchain tools (if not already exported)
13-
7. Define Action class for given tool
13+
7. Define an Action class for given tool
1414
8. Export Action
1515
9. Use the custom tool
1616

@@ -87,7 +87,7 @@ export * from "./tiplink";
8787
export * from "./your_protocol"; // Add your protocol here if it's not already in the list
8888
```
8989

90-
### 7. Define Action class for given tool
90+
### 7. Define an Action class for given tool
9191

9292
> `src/actions/your_protocol/custom_action.ts`
9393
```typescript:src/actions/your_protocol/custom_action.ts

0 commit comments

Comments
 (0)