Commit 6d7af83
authored
docs: fix duplicate-word typos in source comments (#10940)
## Summary
Three duplicate-word typos in source comments, no code changes:
| File:Line | Fix |
|---|---|
| \`libs/langchain-core/src/prompts/prompt.ts:186\` | \`used a a way\` →
\`used as a way\` |
| \`libs/langchain/src/agents/nodes/AgentNode.ts:167\` | \`if the the
user\` → \`if the user\` |
| \`libs/providers/langchain-openai/src/converters/responses.ts:569\` |
\`have the the same index\` → \`have the same index\` |
Diff is exactly 3 lines, all in JSDoc / inline comments.
## Novelty check
\`gh pr list --search\` against each of the three file paths returned no
open PR overlapping these lines. \`grep -rn \"the the \\| a a way\"\`
across the repo turns up only these three sites.
## Test plan
- [x] No runtime behavior changes — comment-only edits.
- [x] \`grep -rn 'the the\\|a a way' libs/\` (excluding node_modules /
dist) returns no matches after the fix.
Co-authored-by: devteamaegis <devteamaegis@users.noreply.github.com>1 parent caad091 commit 6d7af83
3 files changed
Lines changed: 3 additions & 3 deletions
File tree
- libs
- langchain-core/src/prompts
- langchain/src/agents/nodes
- providers/langchain-openai/src/converters
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
183 | 183 | | |
184 | 184 | | |
185 | 185 | | |
186 | | - | |
| 186 | + | |
187 | 187 | | |
188 | 188 | | |
189 | 189 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
164 | 164 | | |
165 | 165 | | |
166 | 166 | | |
167 | | - | |
| 167 | + | |
168 | 168 | | |
169 | 169 | | |
170 | 170 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
566 | 566 | | |
567 | 567 | | |
568 | 568 | | |
569 | | - | |
| 569 | + | |
570 | 570 | | |
571 | 571 | | |
572 | 572 | | |
| |||
0 commit comments