Skip to content

Commit d17fce5

Browse files
authored
Apply suggestions from code review
1 parent 11cb1e5 commit d17fce5

14 files changed

+14
-14
lines changed

Diff for: source/faq.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ FAQ
1010

1111
.. meta::
1212
:keywords: code example, connection error, question, help
13-
:description: Find answers to common questions about the Go driver, including connection pooling, error handling, and BSON to JSON conversion.
13+
:description: Find answers to common questions about the MongoDB Go Driver, including connection pooling, error handling, and BSON to JSON conversion.
1414

1515
.. contents:: On this page
1616
:local:

Diff for: source/fundamentals.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Fundamentals
33
============
44

55
.. meta::
6-
:description: Explore tasks like connecting to MongoDB, performing transactions, and working with BSON using the Go driver.
6+
:description: Explore tasks like connecting to MongoDB, performing transactions, and working with BSON using the MongoDB Go Driver.
77

88
.. toctree::
99
:titlesonly:

Diff for: source/fundamentals/auth.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Authentication Mechanisms
55
=========================
66

77
.. meta::
8-
:description: Learn how to use various authentication mechanisms with the Go driver for MongoDB, including SCRAM, MONGODB-AWS, and X.509.
8+
:description: Learn how to use various authentication mechanisms with the MongoDB Go Driver, including SCRAM, MONGODB-AWS, and X.509.
99

1010
.. contents:: On this page
1111
:local:

Diff for: source/fundamentals/bson.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Work with BSON
1616

1717
.. meta::
1818
:keywords: code examples, serialization
19-
:description: Learn how the Go driver handles BSON data conversion, including marshalling and unmarshalling, and how to use struct tags and BSON options.
19+
:description: Learn how the MongoDB Go Driver handles BSON data conversion, including marshalling and unmarshalling, and how to use struct tags and BSON options.
2020

2121
Overview
2222
--------

Diff for: source/fundamentals/connections.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Connections
55
===========
66

77
.. meta::
8-
:description: Explore how to configure connections to a MongoDB deployment using the Go driver, including options for TLS and network compression.
8+
:description: Explore how to configure connections to a MongoDB deployment using the MongoDB Go Driver, including options for TLS and network compression.
99

1010
.. toctree::
1111

Diff for: source/fundamentals/connections/network-compression.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Network Compression
55
===================
66

77
.. meta::
8-
:description: Learn how to enable network compression in the Go driver for MongoDB using Snappy, Zlib, or Zstandard algorithms to reduce data transfer.
8+
:description: Learn how to enable network compression in the MongoDB Go Driver for MongoDB using Snappy, Zlib, or Zstandard algorithms to reduce data transfer.
99

1010
.. contents:: On this page
1111
:local:

Diff for: source/fundamentals/crud.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CRUD Operations
55
===============
66

77
.. meta::
8-
:description: Explore how to perform CRUD operations in MongoDB using the Go driver, including creating, reading, updating, and deleting documents.
8+
:description: Explore how to perform CRUD operations using the MongoDB Go Driver, including creating, reading, updating, and deleting documents.
99

1010
.. toctree::
1111
:caption: CRUD Operations

Diff for: source/fundamentals/crud/read-operations/limit.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Limit the Number of Returned Results
1010

1111
.. meta::
1212
:keywords: read operation, code example, pipeline, customize output
13-
:description: Learn how to limit the number of documents returned in MongoDB read operations using the Go driver, including examples with sorting and aggregation.
13+
:description: Learn how to limit the number of documents returned in read operations using the MongoDB Go Driver, including examples with sorting and aggregation.
1414

1515
.. contents:: On this page
1616
:local:

Diff for: source/fundamentals/encrypt-fields.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66

77
.. meta::
88
:keywords: privacy, security
9-
:description: Use the Go driver to encrypt document fields with in-use encryption, protecting sensitive data like credit card numbers and health information.
9+
:description: Use the MongoDB Go Driver to encrypt document fields with in-use encryption, protecting sensitive data like credit card numbers and health information.
1010

1111
.. sharedinclude:: dbx/encrypt-fields.rst

Diff for: source/fundamentals/enterprise-auth.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Enterprise Authentication Mechanisms
1010

1111
.. meta::
1212
:keywords: security, code example, credentials
13-
:description: Learn how to authenticate in MongoDB using Enterprise Edition mechanisms like GSSAPI/Kerberos and LDAP, with examples for Go driver integration.
13+
:description: Learn how to authenticate with the MongoDB Go Driver using Enterprise Edition mechanisms like GSSAPI/Kerberos and LDAP, with examples.
1414

1515
.. contents:: On this page
1616
:local:

Diff for: source/fundamentals/geo.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Work with Geospatial Data
1010

1111
.. meta::
1212
:keywords: code example, coordinates, location, geographic
13-
:description: Learn to work with geospatial data in MongoDB using GeoJSON and legacy formats, create geospatial indexes, and perform queries with the Go driver.
13+
:description: Learn to work with geospatial data in the MongoDB Go Driver using GeoJSON and legacy formats, create geospatial indexes, and perform queries.
1414

1515
.. contents:: On this page
1616
:local:

Diff for: source/fundamentals/monitoring/cluster-monitoring.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Cluster Monitoring
1010

1111
.. meta::
1212
:keywords: code example, server, topology
13-
:description: Monitor topology events in MongoDB using the Go driver to track cluster changes, assess health, and perform capacity planning by subscribing to SDAM events.
13+
:description: Monitor topology events with the MongoDB Go Driver to track cluster changes, assess health, and perform capacity planning by subscribing to SDAM events.
1414

1515
.. contents:: On this page
1616
:local:

Diff for: source/quick-reference.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Quick Reference
55
===============
66

77
.. meta::
8-
:description: Explore Go driver syntax for MongoDB commands, including find, insert, update, delete, and more, with links to API documentation and usage examples.
8+
:description: Explore with the MongoDB Go Driver syntax for various commands, including find, insert, update, delete, and more, with links to API documentation and usage examples.
99

1010
.. default-domain:: mongodb
1111

Diff for: source/whats-new.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ What's New
1616

1717
.. meta::
1818
:keywords: update, backward compatibility
19-
:description: Discover the latest updates and features in the Go driver, including OpenID Connect support, streamlined APIs, and improved error handling in version 2.0.
19+
:description: Discover the latest updates and features in the with the MongoDB Go Driver, including OpenID Connect support, streamlined APIs, and improved error handling in version 2.0.
2020

2121
.. tip:: Release Notes
2222

0 commit comments

Comments
 (0)