diff --git a/libs/langgraph/langgraph/graph/state.py b/libs/langgraph/langgraph/graph/state.py index 7a3d11a32..0dbddab41 100644 --- a/libs/langgraph/langgraph/graph/state.py +++ b/libs/langgraph/langgraph/graph/state.py @@ -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. + + The signature of each node is `State -> Partial`. 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.