From 9e52181a9b672c6cf5807515ccc1861b7617de08 Mon Sep 17 00:00:00 2001 From: Zev Isert Date: Thu, 15 Feb 2024 09:52:25 -0800 Subject: [PATCH] docs: update wrong numeral adjectives in multi-platform.md An example build command used three platforms, then quantified the number of concurrent processes as four. --- content/build/guide/multi-platform.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/build/guide/multi-platform.md b/content/build/guide/multi-platform.md index addef07432..43717baf55 100644 --- a/content/build/guide/multi-platform.md +++ b/content/build/guide/multi-platform.md @@ -76,7 +76,7 @@ $ docker build \ --platform=linux/amd64,linux/arm64,linux/arm/v7 . ``` -This command uses emulation to run the same build four times, once for each +This command uses emulation to run the same build three times, once for each platform. The build results are exported to a `bin` directory. ```text @@ -94,7 +94,7 @@ bin When you build for multiple platforms concurrently, BuildKit runs all of the build steps under emulation for each platform that you specify. -Effectively forking the build into two concurrent processes. +Effectively forking the build into multiple concurrent processes. ![Build pipelines using emulation](./images/emulation.png)