Fix typos in the Builders manual (#22506)

## Description

This pull request fixes a few minor typos in the Builders manual.
This commit is contained in:
Andrey Sobolev 2025-04-28 14:02:41 +03:00 committed by GitHub
parent 68c6c72c7c
commit fcb958a33f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -69,11 +69,11 @@ selected when you invoke builds.
Even though `docker build` is an alias for `docker buildx build`, there are
subtle differences between the two commands. With Buildx, the build client and
the and daemon (BuildKit) are decoupled. This means you can use multiple
the daemon (BuildKit) are decoupled. This means you can use multiple
builders from a single client, even remote ones.
The `docker build` command always defaults to using the default builder that
comes bundled with the Docker Engine, for ensuring backwards compatibility with
comes bundled with the Docker Engine, to ensure backwards compatibility with
older versions of the Docker CLI. The `docker buildx build` command, on the
other hand, checks whether you've set a different builder as the default
builder before it sends your build to BuildKit.