From 146654c4d866f557f1236093353d49c121ab113d Mon Sep 17 00:00:00 2001 From: Max Brauer Date: Wed, 12 Jan 2022 13:34:45 +0100 Subject: [PATCH] fix labeling syntax in example --- docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index 9cac8e41f..f9edc0732 100644 --- a/docs/index.md +++ b/docs/index.md @@ -3074,7 +3074,7 @@ this works just fine - however as the suite grows you may see that `environment` ```go var _ = Describe("Smoketests", func() { - Describe("Minimally-invasive", Label("PRODUCTION", "STAGING")func() { + Describe("Minimally-invasive", Label("PRODUCTION", "STAGING"), func() { It("can connect to the server", func() { ... })