diff --git a/crates/llm-chain-openai/examples/simple_sequential_generation_stream.rs b/crates/llm-chain-openai/examples/simple_sequential_generation_stream.rs index 7a6ea660..6899d1db 100644 --- a/crates/llm-chain-openai/examples/simple_sequential_generation_stream.rs +++ b/crates/llm-chain-openai/examples/simple_sequential_generation_stream.rs @@ -30,7 +30,7 @@ async fn main() -> Result<(), Box> { .unwrap(); // Print the result to the console - // Call `res.primary_textual_output()` explictly to get the streamed response. + // Call `res.primary_textual_output()` explicitly to get the streamed response. let mut stream = res.as_stream().await?; while let Some(v) = stream.next().await { print!("{}", v);