Skip to content

Commit 68a9cab

Browse files
committed
test
1 parent b8d1525 commit 68a9cab

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: source/includes/quick-start/main.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ func main() {
1919
}
2020

2121
uri := os.Getenv("MONGODB_URI")
22-
link := "www.mongodb.com/docs/drivers/go/current/usage-examples/#environment-variable"
22+
docs := "www.mongodb.com/docs/drivers/go/current/"
2323
if uri == "" {
2424
log.Fatal("Set your 'MONGODB_URI' environment variable. " +
25-
"See: " + link)
25+
"See: " + docs +
26+
"usage-examples/#environment-variable")
2627
}
2728
client, err := mongo.Connect(options.Client().
2829
ApplyURI(uri))

0 commit comments

Comments
 (0)