From fb0c8e9317369713c9027818beec10511459d0f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 19 Jul 2022 12:58:22 +0200 Subject: [PATCH] Docs: fix Go API example Fix the indentation of the Go API example. --- .../content/development/flamenco-api/_index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/flamenco-io-site/content/development/flamenco-api/_index.md b/web/flamenco-io-site/content/development/flamenco-api/_index.md index dec27ac3..f2782028 100644 --- a/web/flamenco-io-site/content/development/flamenco-api/_index.md +++ b/web/flamenco-io-site/content/development/flamenco-api/_index.md @@ -146,9 +146,9 @@ import ( func main() { client, err := api.NewClientWithResponses("http://localhost:8080") - if err != nil { - panic(err) - } + if err != nil { + panic(err) + } ctx := context.Background() resp, err := client.GetVersionWithResponse(ctx)