From 16300604c10f578b6b7d552f5c03ba5d4b81a426 Mon Sep 17 00:00:00 2001 From: Mueez Khan <30333942+rzmk@users.noreply.github.com> Date: Thu, 2 Jul 2026 13:09:23 -0400 Subject: [PATCH] docs: fix typo --- docs/quickstart/testcontainers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart/testcontainers.md b/docs/quickstart/testcontainers.md index 09da03e7..2c6cbed1 100644 --- a/docs/quickstart/testcontainers.md +++ b/docs/quickstart/testcontainers.md @@ -42,7 +42,7 @@ Here we use the `GenericImage` struct to create a Redis container. * `GenericImage::new` accepts the image name and tag. * `with_exposed_port` adds a port to be exposed from the container (can be called multiple times). -* `with_wait_for` allows to pass conditions (`WaitFor`) of container rediness. It +* `with_wait_for` allows to pass conditions (`WaitFor`) of container readiness. It is important to get this set because it helps to know when the container is ready to receive any traffic. In this case, we check for the logs we know come from Redis, telling us that it is ready to accept requests.