From 71bfb4f60d0384c2b307bc3b6cf76b054d3041a8 Mon Sep 17 00:00:00 2001 From: Mueez Khan <30333942+rzmk@users.noreply.github.com> Date: Thu, 2 Jul 2026 04:19:51 -0400 Subject: [PATCH] docs: fix typo --- docs/features/exec_commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/features/exec_commands.md b/docs/features/exec_commands.md index 0dea1b0b..4c6f3e6c 100644 --- a/docs/features/exec_commands.md +++ b/docs/features/exec_commands.md @@ -17,7 +17,7 @@ to be executed after the container is started and ready. - [Image::exec_before_ready](https://docs.rs/testcontainers/latest/testcontainers/core/trait.Image.html#method.exec_before_ready) Only if you implement your own `Image`: Allows to define commands -to be executed executed after the container has started, +to be executed after the container has started, but before the `Image::ready_conditions` are awaited for. Here we will focus on the first option, which is the most common one.