From ecf7882aee6dbc3e27587d7f3f599e6f4539cd98 Mon Sep 17 00:00:00 2001 From: lena-larionova <54370747+lena-larionova@users.noreply.github.com> Date: Fri, 4 Oct 2019 14:10:27 -0700 Subject: [PATCH 1/2] Changed notes into warnings (#9577) Signed-off-by: Lena Larionova --- docker-hub/deactivate-account.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-hub/deactivate-account.md b/docker-hub/deactivate-account.md index 57a513856e..ee5a85be48 100644 --- a/docker-hub/deactivate-account.md +++ b/docker-hub/deactivate-account.md @@ -30,6 +30,7 @@ Before deactivating your Docker Hub account, please complete the following: Once you have completed all the steps above, you may deactivate your account. On Docker Hub, go to **_Your Account_** > **Accounts Settings** > **Deactivate Account**. > This cannot be undone! Be sure you've gathered all the data you need from your account before deactivating it. +{: .warning } ## Deactivating an organization @@ -48,3 +49,4 @@ Before deactivating an organization, please complete the following: Once you have completed all the steps above, you may deactivate your organization. On Docker Hub, go to **Organizations** > **_Your Organization_** > **Settings** > **Deactivate Org**. > This cannot be undone! Be sure you've gathered all the data you need from your organization before deactivating it. +{: .warning } From a279b2dd246782268545598e396765d13a3efc58 Mon Sep 17 00:00:00 2001 From: Steve Nester Date: Fri, 4 Oct 2019 17:11:33 -0400 Subject: [PATCH 2/2] "is" to "are" (#9564) The subject is of the form X and Y, therefore "are" is the correct verb. --- get-started/part2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-started/part2.md b/get-started/part2.md index 1203ab1140..6d8ce43ee3 100644 --- a/get-started/part2.md +++ b/get-started/part2.md @@ -90,7 +90,7 @@ This `Dockerfile` refers to a couple of files we haven't created yet, namely Create two more files, `requirements.txt` and `app.py`, and put them in the same folder with the `Dockerfile`. This completes our app, which as you can see is quite simple. When the above `Dockerfile` is built into an image, `app.py` and -`requirements.txt` is present because of that `Dockerfile`'s `COPY` command, +`requirements.txt` are present because of that `Dockerfile`'s `COPY` command, and the output from `app.py` is accessible over HTTP thanks to the `EXPOSE` command.