From c01d1ca59ca4676d9b744761e97821c861378340 Mon Sep 17 00:00:00 2001 From: Anas Khan <83116240+anxkhn@users.noreply.github.com> Date: Fri, 3 Jul 2026 18:42:00 +0530 Subject: [PATCH] Fix network list sample output in how-to docs. The 'container network list' example showed a three-column table with a STATE column and a 'running' value per row, but NetworkResource's ListDisplayable conformance emits only two columns (NETWORK, SUBNET). Update the sample to match the real output. --- docs/how-to.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/how-to.md b/docs/how-to.md index 07697ecd2..79f533bae 100644 --- a/docs/how-to.md +++ b/docs/how-to.md @@ -326,9 +326,9 @@ Run `container network list` to see the networks that exist: ```console % container network list -NETWORK STATE SUBNET -default running 192.168.64.0/24 -foo running 192.168.65.0/24 +NETWORK SUBNET +default 192.168.64.0/24 +foo 192.168.65.0/24 % ```