From 68a9cab70fb68360d8a0b2c2fdfe8bf7e40780df Mon Sep 17 00:00:00 2001 From: norareidy Date: Tue, 3 Sep 2024 10:44:10 -0400 Subject: [PATCH] test --- source/includes/quick-start/main.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/includes/quick-start/main.go b/source/includes/quick-start/main.go index 2a27cd13..2b50d8f7 100644 --- a/source/includes/quick-start/main.go +++ b/source/includes/quick-start/main.go @@ -19,10 +19,11 @@ func main() { } uri := os.Getenv("MONGODB_URI") - link := "www.mongodb.com/docs/drivers/go/current/usage-examples/#environment-variable" + docs := "www.mongodb.com/docs/drivers/go/current/" if uri == "" { log.Fatal("Set your 'MONGODB_URI' environment variable. " + - "See: " + link) + "See: " + docs + + "usage-examples/#environment-variable") } client, err := mongo.Connect(options.Client(). ApplyURI(uri))