Skip to content

Commit f9d9d3f

Browse files
authored
fix(docs): typo in the "Pass private state between nodes" output example. (#1183)
## Overview In the example output in the "Pass private state between nodes" section, the print statement shown above was not written correctly. ## Type of change **Type:** Fix typo ## Related issues/PRs - GitHub issue: None - Feature PR: None <!-- For LangChain employees, if applicable: --> - Linear issue: - Slack thread: ## Checklist <!-- Put an 'x' in all boxes that apply --> - [x] I have read the [contributing guidelines](README.md) - [ ] I have tested my changes locally using `docs dev` - [ ] All code examples have been tested and work correctly - [ ] I have used **root relative** paths for internal links - [ ] I have updated navigation in `src/docs.json` if needed - I have gotten approval from the relevant reviewers - (Internal team members only / optional) I have created a preview deployment using the [Create Preview Branch workflow](https://github.com/langchain-ai/docs/actions/workflows/create-preview-branch.yml) ## Additional notes <!-- Any other information that would be helpful for reviewers -->
1 parent f9a372d commit f9d9d3f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/oss/langgraph/use-graph-api.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -595,14 +595,14 @@ print(f"Output of graph invocation: {response}")
595595

596596
```
597597
Entered node `node_1`:
598-
ut: {'a': 'set at start'}.
599-
urned: {'private_data': 'set by node_1'}
598+
Input: {'a': 'set at start'}.
599+
Returned: {'private_data': 'set by node_1'}
600600
Entered node `node_2`:
601-
ut: {'private_data': 'set by node_1'}.
602-
urned: {'a': 'set by node_2'}
601+
Input: {'private_data': 'set by node_1'}.
602+
Returned: {'a': 'set by node_2'}
603603
Entered node `node_3`:
604-
ut: {'a': 'set by node_2'}.
605-
urned: {'a': 'set by node_3'}
604+
Input: {'a': 'set by node_2'}.
605+
Returned: {'a': 'set by node_3'}
606606
607607
Output of graph invocation: {'a': 'set by node_3'}
608608
```

0 commit comments

Comments
 (0)