From be3e1a628947abe2c5624949db82fedc5bc8799a Mon Sep 17 00:00:00 2001 From: mbehboodian <29199390+xeptore@users.noreply.github.com> Date: Thu, 9 Dec 2021 07:06:42 +0000 Subject: [PATCH] Fix typo Remove unnecessary backtick (`). --- engine/swarm/networking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/swarm/networking.md b/engine/swarm/networking.md index 0bc01c590d..308befcddd 100644 --- a/engine/swarm/networking.md +++ b/engine/swarm/networking.md @@ -199,7 +199,7 @@ To customize subnet allocation for your Swarm networks, you can [optionally conf For example, the following command is used when initializing Swarm: ```console -$ docker swarm init --default-addr-pool 10.20.0.0/16 --default-addr-pool-mask-length 26` +$ docker swarm init --default-addr-pool 10.20.0.0/16 --default-addr-pool-mask-length 26 ``` Whenever a user creates a network, but does not use the `--subnet` command line option, the subnet for this network will be allocated sequentially from the next available subnet from the pool. If the specified network is already allocated, that network will not be used for Swarm.