Skip to content

Commit d2d4990

Browse files
authored
DOCSP-28396: Removed instances of e.g. (#591)
1 parent 1ea6fc7 commit d2d4990

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

source/fundamentals/connection/connection-options.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ parameters of the connection URI to specify the behavior of the client.
3535
authentication mechanisms.
3636

3737
* - **authMechanismProperties**
38-
- comma separated key:value pairs, e.g. "opt1:val1,opt2:val2"
38+
- comma separated key:value pairs, for example, "opt1:val1,opt2:val2"
3939
- ``null``
4040
- Specifies additional options provided for authentication, such as
4141
enabling hostname canonicalization for GSSAPI.
@@ -46,7 +46,7 @@ parameters of the connection URI to specify the behavior of the client.
4646
- Specifies the database that connections should authenticate against.
4747

4848
* - **compressors**
49-
- comma separated list of strings, e.g. "snappy,zlib,zstd"
49+
- comma separated list of strings, for example, "snappy,zlib,zstd"
5050
- ``null``
5151
- Specifies the allowed compression types for wire protocol messages
5252
sent to or received from the server. See :ref:`node-network-compression`
@@ -156,7 +156,7 @@ parameters of the connection URI to specify the behavior of the client.
156156
- Specifies the default read preference for the client (excluding tags). See :ref:`read preference <read-preference>` for more information.
157157

158158
* - **readPreferenceTags**
159-
- comma-separated key:value pairs (e.g. "dc:ny,rack:1" and "dc:ny)
159+
- comma-separated key:value pairs, for example, "dc:ny,rack:1" and "dc:ny
160160
can be specified multiple times, each instance of this key is a
161161
separate tag set
162162
- ``null``

source/fundamentals/crud/query-document.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ specifying matching criteria in a **query document**. Query documents contain
2020
one or more query operators that apply to specific fields which determine which
2121
documents to include in the result set.
2222

23-
In a query document, you can match fields against literal values
24-
(e.g. ``{ title: 'The Room' }``) or you can compose
23+
In a query document, you can match fields against literal values, such as
24+
``{ title: 'The Room' }``, or you can compose
2525
:manual:`query operators </reference/operator/query/>` to express more
2626
complex matching criteria. In this guide, we cover the following categories
2727
of query operators in MongoDB and show examples on how to use them:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Text search, using the ``$text`` query operator, lets you search string
1919
type fields in your collection for words or phrases. This operator
2020
performs a logical ``OR`` on each term separated by a space in the search
2121
string. You can also specify additional options to the operator to
22-
handle case sensitivity, word stemming (e.g. plural forms, tense) and stop
23-
words for a supported language. This is particularly useful for
22+
handle case sensitivity, stop words, and word stemming (such as plural
23+
forms or other tenses) for a supported language. This is particularly useful for
2424
unstructured text such as transcripts, essays, or web pages.
2525

2626
The ``$text`` query operator requires that you specify the search field in

source/fundamentals/indexes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ When you execute a query against MongoDB, your query can include three
3333
parts:
3434

3535
- query criteria that specify field(s) and value(s) you are looking for
36-
- options that affect the query's execution (e.g. read concern)
36+
- options that affect the query's execution, such as read concern
3737
- projection criteria to specify the fields MongoDB should return (optional)
3838

3939
When all the fields specified in the query criteria and projection of a

0 commit comments

Comments
 (0)