From fd4e722f6351c2389f97166e71421ca57d4fde5c Mon Sep 17 00:00:00 2001 From: Dustin Date: Tue, 16 Apr 2024 14:03:07 +0900 Subject: [PATCH] Update code-executors.ipynb (#2394) fix spelling typo --- website/docs/tutorial/code-executors.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/tutorial/code-executors.ipynb b/website/docs/tutorial/code-executors.ipynb index dcd7ace42..64ccc0b6b 100644 --- a/website/docs/tutorial/code-executors.ipynb +++ b/website/docs/tutorial/code-executors.ipynb @@ -680,7 +680,7 @@ "nature of the code blocks in agents' conversation.\n", "If each code block is a \"script\" that does not use variables from\n", "previous code blocks, the command line code executor is a good choice.\n", - "If the some conde blocks contain expensive computation (e.g., training a\n", + "If the some code blocks contain expensive computation (e.g., training a\n", "machine learning model and loading large amount of data), and you want to\n", "keep the state in memory to avoid repeated computation,\n", "the Jupyter code executor is a better choice."