From b90d7c4e5813c2d693d0a42a27c2fc7132441eef Mon Sep 17 00:00:00 2001
From: Kenta Murata <3959+mrkn@users.noreply.github.com>
Date: Tue, 9 Sep 2025 05:51:16 +0900
Subject: [PATCH] fix(docs): Fix indentation of info block in graph-api.md
(#6081)
The "Why split application steps into a sequence with LangGraph?" info
block in `graph-api.md` is broken.
Before:
After:
---
docs/docs/how-tos/graph-api.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/docs/how-tos/graph-api.md b/docs/docs/how-tos/graph-api.md
index bf0af9610..75d686bc4 100644
--- a/docs/docs/how-tos/graph-api.md
+++ b/docs/docs/how-tos/graph-api.md
@@ -1422,8 +1422,8 @@ const builder = new StateGraph(State)
:::
??? info "Why split application steps into a sequence with LangGraph?"
-LangGraph makes it easy to add an underlying persistence layer to your application.
-This allows state to be checkpointed in between the execution of nodes, so your LangGraph nodes govern:
+ LangGraph makes it easy to add an underlying persistence layer to your application.
+ This allows state to be checkpointed in between the execution of nodes, so your LangGraph nodes govern:
- How state updates are [checkpointed](../concepts/persistence.md)
- How interruptions are resumed in [human-in-the-loop](../concepts/human_in_the_loop.md) workflows
@@ -3320,4 +3320,4 @@ const imageBuffer = new Uint8Array(await image.arrayBuffer());
await fs.writeFile("graph.png", imageBuffer);
```
-:::
\ No newline at end of file
+:::