Skip to content

Commit aea3db2

Browse files
DOCSP-21847 'more information' cleanup (#104)
* updated learn more wording for consistency * cleanup * fixed broken link
1 parent 5c07d59 commit aea3db2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+97
-98
lines changed

source/fundamentals/auth.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ To specify the default authentication mechanism, omit the
100100

101101
client, err := mongo.Connect(context.TODO(), clientOpts)
102102

103-
For more information on the challenge-response (CR) and salted
103+
To learn more about the challenge-response (CR) and salted
104104
challenge-response authentication mechanisms (SCRAM) that MongoDB supports,
105105
see the :manual:`SCRAM </core/security-scram/>` section of the server manual.
106106

@@ -278,6 +278,6 @@ following:
278278
clientOpts := options.Client().ApplyURI(uri).SetAuth(credential)
279279

280280
..
281-
For more information on configuring your application to use
281+
To learn more about configuring your application to use
282282
certificates as well as TLS/SSL options, see
283283
:ref:`golang-tls-ssl-guide`.

source/fundamentals/bson.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ than 100:
4646

4747
filter := bson.D{{"quantity", bson.D{{"$gt", 100}}}}
4848

49-
For more information on how the Go Driver handles BSON data, see the
49+
To learn more about how the Go Driver handles BSON data, see the
5050
`bson package API documentation <{+api+}/bson>`__.
5151

5252
Struct Tags
@@ -293,9 +293,9 @@ The output of the preceding code should look like this:
293293
be useful if you need to look up individual elements without
294294
unmarshalling the entire BSON document.
295295

296-
For more information on the marshalling and unmarshalling methods used with the
296+
To learn more about the marshalling and unmarshalling methods used with the
297297
``Cursor`` type, see the `Cursor API documentation <{+api+}/mongo#Cursor>`__
298298

299-
For more information on the marshalling and unmarshalling methods in the
299+
To learn more about the marshalling and unmarshalling methods in the
300300
``bson`` package, see the `bson API documentation
301301
<{+api+}/bson#hdr-Marshalling_and_Unmarshalling>`_

source/fundamentals/connection.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ your MongoDB instance.
5252

5353
The last part of the connection string specifies connection and authentication
5454
options. In the example, we set two connection options:
55-
``maxPoolSize=20`` and ``w=majority``. For more information on connection
55+
``maxPoolSize=20`` and ``w=majority``. To learn more about connection
5656
options, read the :ref:`golang-connection-options` section of this guide.
5757

5858
The following code shows how you can use the sample connection URI in a
@@ -63,7 +63,7 @@ client to connect to MongoDB.
6363

6464
.. note::
6565

66-
For information about connecting to Atlas Serverless, see the
66+
To learn about connecting to Atlas Serverless, see the
6767
:ref:`Serverless Instance Limitations page
6868
<atlas-serverless-drivers>` to identify the minimum driver version
6969
you need.
@@ -206,7 +206,7 @@ URI to specify the behavior of the client.
206206
* - **w**
207207
- string or integer
208208
- ``null``
209-
- Specifies the write concern. For more information on values, see the
209+
- Specifies the write concern. To learn more about values, see the
210210
server documentation on
211211
:manual:`Write Concern options </reference/write-concern>`.
212212

source/fundamentals/context.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ operation. After each iteration, the driver returns a server selection
5757
timeout error if the Context expired or the selection process took
5858
longer than the ``serverSelectionTimeoutMS`` setting.
5959

60-
For more information on how the driver selects a server, see the
60+
To learn more about how the driver selects a server, see the
6161
:ref:`replica-set-read-preference-behavior`.
6262

6363
Connection Checkout

source/fundamentals/crud/compound-operations.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ After running this example, the output resembles the following:
307307
Additional Information
308308
----------------------
309309

310-
For more information on performing the operations mentioned, see the
310+
To learn more about performing the operations mentioned, see the
311311
following guides:
312312

313313
- :ref:`golang-query-document`
@@ -319,7 +319,7 @@ following guides:
319319
API Documentation
320320
~~~~~~~~~~~~~~~~~
321321

322-
For more information on any of the functions or types discussed in this
322+
To learn more about any of the functions or types discussed in this
323323
guide, see the following API Documentation:
324324

325325
- `FindOneAndDelete() <{+api+}/mongo#Collection.FindOneAndDelete>`__

source/fundamentals/crud/read-operations/count.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ After running this example, the output resembles the following:
190190
Additional Information
191191
----------------------
192192

193-
For more information on the operations mentioned, see the following
193+
To learn more about the operations mentioned, see the following
194194
guides:
195195

196196
- :ref:`golang-query-document`
@@ -203,7 +203,7 @@ guides:
203203
API Documentation
204204
~~~~~~~~~~~~~~~~~
205205

206-
For more information on any of the functions or types discussed in this
206+
To learn more about any of the functions or types discussed in this
207207
guide, see the following API Documentation:
208208

209209
- `CountDocuments() <{+api+}/mongo#Collection.CountDocuments>`__

source/fundamentals/crud/read-operations/cursor.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ consumes in both the client application and the MongoDB server.
120120
Additional Information
121121
----------------------
122122

123-
For more information on the operations discussed in this guide, see the
123+
To learn more about the operations discussed in this guide, see the
124124
following guides:
125125

126126
- :ref:`golang-retrieve`
@@ -133,7 +133,7 @@ following guides:
133133
API Documentation
134134
~~~~~~~~~~~~~~~~~
135135

136-
For more information on cursors and how to access their elements, see
136+
To learn more about cursors and how to access their elements, see
137137
the following API Documentation:
138138

139139
- `Cursor <{+api+}/mongo#Cursor>`__

source/fundamentals/crud/read-operations/distinct.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,12 @@ Additional Information
104104

105105
For a runnable example of retrieving distinct values, see :ref:`golang-distinct-usage-example`.
106106

107-
For information about construting a query filter, see :ref:`golang-query-document`.
107+
To learn about constructing a query filter, see :ref:`golang-query-document`.
108108

109109
API Documentation
110110
~~~~~~~~~~~~~~~~~
111111

112-
For more information on any of the functions or types discussed in this
112+
To learn more about any of the functions or types discussed in this
113113
guide, see the following API Documentation:
114114

115115
- `Distinct() <{+api+}/mongo#Collection.Distinct>`__

source/fundamentals/crud/read-operations/limit.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,21 +145,21 @@ After running this example, the output resembles the following:
145145
Additional Information
146146
----------------------
147147

148-
For more information about the operations mentioned, see the following
148+
To learn more about the operations mentioned, see the following
149149
guides:
150150

151151
- :ref:`golang-query-document`
152152
- :ref:`golang-retrieve`
153153
- :ref:`golang-sort-results`
154154
- :ref:`golang-skip`
155155

156-
.. For more information on aggregation, see the
156+
.. To learn more about aggregation, see the
157157
.. :doc:`Aggregation </fundamentals/aggregation>` guide.
158158

159159
API Documentation
160160
~~~~~~~~~~~~~~~~~
161161

162-
For more information on any of the functions or types discussed in this
162+
To learn more about any of the functions or types discussed in this
163163
guide, see the following API Documentation:
164164

165165
- `FindOptions.SetLimit() <{+api+}/mongo/options#FindOptions.SetLimit>`__

source/fundamentals/crud/read-operations/project.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,22 +162,22 @@ After running this example, the output resembles the following:
162162
Additional Information
163163
----------------------
164164

165-
For more information about the operations mentioned, see the following
165+
To learn more about the operations mentioned, see the following
166166
guides:
167167

168168
- :ref:`golang-query-document`
169169
- :ref:`golang-retrieve`
170170
- :ref:`golang-compound-operations`
171171

172-
For information about projecting text scores from your text search, see :ref:`golang-search-text`.
172+
To learn about projecting text scores from your text search, see :ref:`golang-search-text`.
173173

174-
.. For more information on aggregation, see the
174+
.. To learn more about aggregation, see the
175175
.. :doc:`Aggregation </fundamentals/aggregation>` guide.
176176

177177
API Documentation
178178
~~~~~~~~~~~~~~~~~
179179

180-
For more information on any of the functions or types discussed in this
180+
To learn more about any of the functions or types discussed in this
181181
guide, see the following API Documentation:
182182

183183
- `Find() <{+api+}/mongo#Collection.Find>`__

0 commit comments

Comments
 (0)