From 3c4336ac6ba70d5638139bd400d9ddb08882a2ce Mon Sep 17 00:00:00 2001 From: Peter Hauke <90506472+peterhauke@users.noreply.github.com> Date: Mon, 24 Jul 2023 06:14:42 +0200 Subject: [PATCH] Fix typo Fix typo and make one other minor language edit --- build/guide/intro.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/guide/intro.md b/build/guide/intro.md index 0213279bff89..c3eb0a135e90 100644 --- a/build/guide/intro.md +++ b/build/guide/intro.md @@ -6,7 +6,7 @@ keywords: build, buildkit, buildx, guide, tutorial, introduction {% include_relative nav.html selected="1" %} -The starting resources for this guide includes a simple Go project and a +The starting resources for this guide include a simple Go project and a Dockerfile. From this starting point, the guide illustrates various ways that you can improve how you build the application with Docker. @@ -95,7 +95,7 @@ Here’s what this Dockerfile does: 6. `RUN go build -o /bin/client ./cmd/client` - Builds the `client` binary, used to send messages to be translated, into the + Builds the `client` binary, which is used to send messages to be translated, into the `/bin` directory. 7. `RUN go build -o /bin/server ./cmd/server`