From 38fbd2cb9edbe232d6ec7c8b107c50bab34da8e5 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Fri, 4 Jun 2021 14:22:52 +0200 Subject: [CI:DOCS] fix incorrect network remove api doc The endpoint returns an array and not a single entry. Fixes #10494 Signed-off-by: Paul Holzinger --- pkg/api/handlers/libpod/swagger.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/api/handlers/libpod/swagger.go b/pkg/api/handlers/libpod/swagger.go index f80595429..2ac5009fc 100644 --- a/pkg/api/handlers/libpod/swagger.go +++ b/pkg/api/handlers/libpod/swagger.go @@ -95,7 +95,7 @@ type swagInfoResponse struct { // swagger:response NetworkRmReport type swagNetworkRmReport struct { // in:body - Body entities.NetworkRmReport + Body []entities.NetworkRmReport } // Network inspect -- cgit v1.2.3-54-g00ecf