From 354c56d0bbbab8762c3c830be3501b84acffb163 Mon Sep 17 00:00:00 2001 From: Preston Vasquez <24281431+prestonvasquez@users.noreply.github.com> Date: Mon, 18 Sep 2023 13:52:20 -0600 Subject: [PATCH] GODRIVER-2690 Remove more v2 references from common-issues --- docs/common-issues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/common-issues.md b/docs/common-issues.md index 8a39f75060..0dc3c6ae56 100644 --- a/docs/common-issues.md +++ b/docs/common-issues.md @@ -34,7 +34,7 @@ sort := bson.D{} ## Convert BSON Document to JSON -There are a variety of marshalers that can be used to encode a BSON document as JSON, including [MarshalExtJSON](https://pkg.go.dev/github.com/mongodb/mongo-go-driver/v2/bson#MarshalExtJSON): +There are a variety of marshalers that can be used to encode a BSON document as JSON, including [MarshalExtJSON](https://pkg.go.dev/github.com/mongodb/mongo-go-driver/bson#MarshalExtJSON): ```go doc := bson.D{{"x", 1}}