From 7e8e21c914c7f4ec6fced47a3932629ef335be73 Mon Sep 17 00:00:00 2001 From: Jeffrey D <1289344+verygoodsoftwarenotvirus@users.noreply.github.com> Date: Thu, 18 May 2023 13:48:02 -0500 Subject: [PATCH] Correct typo in APIChain example notebook (Farenheit -> Fahrenheit) (#4938) Correct typo in APIChain example notebook (Farenheit -> Fahrenheit) --- docs/modules/chains/examples/api.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/chains/examples/api.ipynb b/docs/modules/chains/examples/api.ipynb index 0dd00626..eac60d5a 100644 --- a/docs/modules/chains/examples/api.ipynb +++ b/docs/modules/chains/examples/api.ipynb @@ -70,7 +70,7 @@ { "data": { "text/plain": [ - "' The current temperature in Munich, Germany is 33.4 degrees Farenheit with a windspeed of 6.8 km/h and a wind direction of 198 degrees. The weathercode is 2.'" + "' The current temperature in Munich, Germany is 33.4 degrees Fahrenheit with a windspeed of 6.8 km/h and a wind direction of 198 degrees. The weathercode is 2.'" ] }, "execution_count": 4, @@ -79,7 +79,7 @@ } ], "source": [ - "chain_new.run('What is the weather like right now in Munich, Germany in degrees Farenheit?')" + "chain_new.run('What is the weather like right now in Munich, Germany in degrees Fahrenheit?')" ] }, {