From 78f8a554c521364b6904981f949a46eb3eca3311 Mon Sep 17 00:00:00 2001 From: Daniel Schroeder Date: Sat, 1 Oct 2022 23:03:46 -0500 Subject: [PATCH] Fix minor typo in "Multi-Container Apps" section --- docs_en/tutorial/multi-container-apps/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs_en/tutorial/multi-container-apps/index.md b/docs_en/tutorial/multi-container-apps/index.md index 332a995..89e6bf1 100644 --- a/docs_en/tutorial/multi-container-apps/index.md +++ b/docs_en/tutorial/multi-container-apps/index.md @@ -37,7 +37,7 @@ For now, we will create the network first and attach the MySQL container at star docker network create todo-app ``` -1. Start a MySQL container and attach it the network. We're also going to define a few environment variables that the +1. Start a MySQL container and attach it to the network. We're also going to define a few environment variables that the database will use to initialize the database (see the "Environment Variables" section in the [MySQL Docker Hub listing](https://hub.docker.com/_/mysql/)). ```bash