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:" ]