From 2a7ae83bf83f583c06d6fc73bf31097ec5256d36 Mon Sep 17 00:00:00 2001 From: isaac hershenson Date: Fri, 19 Jul 2024 13:07:26 -0700 Subject: [PATCH] spelling --- examples/node-retries.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/node-retries.ipynb b/examples/node-retries.ipynb index 93749e065..6798852f3 100644 --- a/examples/node-retries.ipynb +++ b/examples/node-retries.ipynb @@ -6,7 +6,7 @@ "source": [ "# How to add node retry policies\n", "\n", - "There are many use cases where you may wish for your node to have a custom retry policy, for example if you are calling an API, querying a databse, or calling an LLM, etc. \n", + "There are many use cases where you may wish for your node to have a custom retry policy, for example if you are calling an API, querying a database, or calling an LLM, etc. \n", "\n", "In order to configure the retry policty, you have to pass the `retry` parameter to the `add_node` function. The `retry` parameter takes in a `RetryPolicy` named tuple object. Below we instantiate a `RetryPolicy` object with the default parameters:" ]