Skip to content

Commit 7a5e3c1

Browse files
authored
fix(docs): PartialState rendering in MkDocs (#6416)
The carat chars were not rendering without code style formatting
1 parent 218c607 commit 7a5e3c1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libs/langgraph/langgraph/graph/state.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ def _get_node_name(node: StateNode[Any, ContextT]) -> str:
110110

111111
class StateGraph(Generic[StateT, ContextT, InputT, OutputT]):
112112
"""A graph whose nodes communicate by reading and writing to a shared state.
113-
The signature of each node is State -> Partial<State>.
113+
114+
The signature of each node is `State -> Partial<State>`.
114115
115116
Each state key can optionally be annotated with a reducer function that
116117
will be used to aggregate the values of that key received from multiple nodes.

0 commit comments

Comments
 (0)