From 394ce83bb188503077eeda3bbab949eca8a5d14b Mon Sep 17 00:00:00 2001 From: Yuki Oshima <39944763+os1ma@users.noreply.github.com> Date: Mon, 9 Sep 2024 16:59:42 +0900 Subject: [PATCH] docs: fix typo `NodeInterupt` --- examples/human_in_the_loop/dynamic_breakpoints.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/human_in_the_loop/dynamic_breakpoints.ipynb b/examples/human_in_the_loop/dynamic_breakpoints.ipynb index c4bd8b7d2..434d68789 100644 --- a/examples/human_in_the_loop/dynamic_breakpoints.ipynb +++ b/examples/human_in_the_loop/dynamic_breakpoints.ipynb @@ -17,7 +17,7 @@ "\n", "In LangGraph you can add breakpoints before / after a node is executed. But oftentimes it may be helpful to **dynamically** interrupt the graph from inside a given node based on some condition. When doing so, it may also be helpful to include information about **why** that interrupt was raised.\n", "\n", - "This guide shows how you can dynamically interrupt the graph using `NodeInterupt` -- a special exception that can be raised from inside a node. Let's see it in action!\n", + "This guide shows how you can dynamically interrupt the graph using `NodeInterrupt` -- a special exception that can be raised from inside a node. Let's see it in action!\n", "\n", "## Setup\n", "\n",