From fe3d3256eeac20c200673b8850f99c31ff3efa22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Henrique=20Faria?= Date: Thu, 8 Dec 2022 20:23:12 -0300 Subject: [PATCH] Fix typo on network docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On the last example of the page there a `#` instead of `$` like the other ones. Signed-off-by: Luís Henrique Faria --- docs/source/markdown/podman-network-create.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/markdown/podman-network-create.1.md b/docs/source/markdown/podman-network-create.1.md index 0582f7b36a..1b3b469497 100644 --- a/docs/source/markdown/podman-network-create.1.md +++ b/docs/source/markdown/podman-network-create.1.md @@ -132,7 +132,7 @@ podman4 Create a Macvlan based network using the host interface eth0. Macvlan networks can only be used as root. ``` -# podman network create -d macvlan -o parent=eth0 --subnet 192.5.0.0/16 newnet +$ podman network create -d macvlan -o parent=eth0 --subnet 192.5.0.0/16 newnet newnet ```