From cc788e290bce0a03b017f777959c050694126a64 Mon Sep 17 00:00:00 2001 From: Lukas Petersson Date: Sun, 17 Nov 2024 18:30:11 -0800 Subject: [PATCH] typo (#854) --- src/inspect_ai/solver/_chain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inspect_ai/solver/_chain.py b/src/inspect_ai/solver/_chain.py index f57be985b..5ee22aaaa 100644 --- a/src/inspect_ai/solver/_chain.py +++ b/src/inspect_ai/solver/_chain.py @@ -9,7 +9,7 @@ def chain(*solvers: Solver | list[Solver]) -> Solver: """Compose a solver from multiple other solvers. - Solvers are executed in turn, and a sovler step event + Solvers are executed in turn, and a solver step event is added to the transcript for each. If a solver returns a state with `completed=True`, the chain is terminated early.