fix(docs): PartialState rendering in MkDocs (#6416)

The carat chars were not rendering without code style formatting
This commit is contained in:
Mason Daugherty
2025-11-07 21:08:01 -05:00
committed by GitHub
parent 218c60717e
commit 7a5e3c1e79
+2 -1
View File
@@ -110,7 +110,8 @@ def _get_node_name(node: StateNode[Any, ContextT]) -> str:
class StateGraph(Generic[StateT, ContextT, InputT, OutputT]):
"""A graph whose nodes communicate by reading and writing to a shared state.
The signature of each node is State -> Partial<State>.
The signature of each node is `State -> Partial<State>`.
Each state key can optionally be annotated with a reducer function that
will be used to aggregate the values of that key received from multiple nodes.