From 4ec7d35cbbfe8af31db05ef9db0f6872aba2d148 Mon Sep 17 00:00:00 2001 From: shu-kitamura Date: Tue, 17 Jun 2025 19:00:44 +0900 Subject: [PATCH] Removed the 'Deleted: ' prefix from each example Signed-off-by: shu-kitamura --- docs/source/markdown/podman-network-rm.1.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/markdown/podman-network-rm.1.md b/docs/source/markdown/podman-network-rm.1.md index b10c34eb92..766021cb09 100644 --- a/docs/source/markdown/podman-network-rm.1.md +++ b/docs/source/markdown/podman-network-rm.1.md @@ -24,19 +24,19 @@ Seconds to wait before forcibly stopping the running containers that are using t Delete specified network: ``` # podman network rm podman9 -Deleted: podman9 +podman9 ``` Delete specified network and all containers associated with the network: ``` # podman network rm -f fred -Deleted: fred +fred ``` Delete specified network and all containers associated with the network after waiting up to 15 seconds: ``` # podman network rm --force --time 15 fred -Deleted: fred +fred ``` ## Exit Status