From 443e9c58627249c15557c11fb067b91b9d5fc889 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Wed, 18 Oct 2023 11:42:55 +0200 Subject: [PATCH] fix: typo in doc comment for Step module Signed-off-by: Daniel Bevenius --- crates/llm-chain/src/step.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/llm-chain/src/step.rs b/crates/llm-chain/src/step.rs index 50302ebb..4d1769f6 100644 --- a/crates/llm-chain/src/step.rs +++ b/crates/llm-chain/src/step.rs @@ -1,4 +1,4 @@ -//! Steps are indivudaul LLM invocations in a chain. They are a combination of a prompt and a configuration. +//! Steps are individual LLM invocations in a chain. They are a combination of a prompt and a configuration. //! //! Steps are used to set the per-invocation settings for a prompt. Useful when you want to change the settings for a specific prompt in a chain. use crate::frame::{FormatAndExecuteError, Frame};