Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/quickstart/testcontainers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down