"is" to "are" (#9564)

The subject is of the form X and Y, therefore "are" is the correct verb.
This commit is contained in:
Steve Nester 2019-10-04 17:11:33 -04:00 committed by lena-larionova
parent ecf7882aee
commit a279b2dd24
1 changed files with 1 additions and 1 deletions

View File

@ -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.