Skip to content

Commit 64d1f98

Browse files
authored
DOCSP-49494-fix-meta-descriptions (#11782)
* DOCSP-49494-fix-meta-descriptions * internal review
1 parent cb5ec81 commit 64d1f98

8 files changed

+8
-8
lines changed

source/reference/operator/aggregation/lookup.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $lookup (aggregation)
66

77
.. meta::
88
:keywords: atlas
9-
:description: Learn about the $lookup aggregation stage, which performs a left outer join to a collection in the same database, and filters in documents from the foreign collection for processing.
9+
:description: Use the `$lookup` aggregation stage to filter and process documents from local and foreign collections.
1010

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

source/reference/operator/aggregation/project.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ $project (aggregation)
99
:values: shell
1010

1111
.. meta::
12-
:description: Learn about the $project aggregation stage, which passes documents with specified fields to the next stage. $project can include or exclude existing fields, add new fields, and compute field values.
12+
:description: Use the `$project`` aggregation stage to pass documents with specified fields to the next stage.
1313

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

source/reference/operator/query/not.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ $not
99
:values: shell, python
1010

1111
.. meta::
12-
:description: Use the $not operator to perform a logical NOT operation on an operator expression. $not selects documents that do not match the operator expression, even those without the field.
12+
:description: Use the $not operator to select documents that do not match the operator expression.
1313

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

source/reference/read-concern-available.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Read Concern ``"available"``
99
============================
1010

1111
.. meta::
12-
:description: Using read concern "available" returns data with no guarantee that the data has been written to a majority of the replica set members. Read concern "available" can return orphaned documents.
12+
:description: Use read concern "available" with a query to return data and orphaned documents from the instance.
1313
:keywords: read isolation
1414

1515
A query with read concern ``"available"`` returns data from the instance

source/reference/read-concern-local.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Read Concern ``"local"``
99
========================
1010

1111
.. meta::
12-
:description: Using read concern "local" returns data with no guarantee that the data has been written to a majority of the replica set members. It is the default for read operations against the primary.
12+
:description: Use read concern "local" with a query to return data from the instance. ``"local"`` is the default for read operations against the primary.
1313
:keywords: read isolation, multi-document transactions
1414

1515

source/tutorial/model-embedded-one-to-many-relationships-between-documents.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Model One-to-Many Relationships with Embedded Documents
1111
:values: shell
1212

1313
.. meta::
14-
:description: Learn how to model one-to-many relationships between MongoDB documents using embedded documents. Embedding connected data in a single document can reduce the number of reads required to obtain data.
14+
:description: Model one-to-many relationships between MongoDB documents using embedded documents to obtain data more efficiently.
1515

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

source/tutorial/model-embedded-one-to-one-relationships-between-documents.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Model One-to-One Relationships with Embedded Documents
1111
:values: shell
1212

1313
.. meta::
14-
:description: Learn how to model one-to-one relationships between MongoDB documents using embedded documents. Embedding connected data in a single document can reduce the number of reads required to obtain data.
14+
:description: Model one-to-one relationships between MongoDB documents using embedded documents to obtain data more efficiently.
1515

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

source/tutorial/query-arrays.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Query an Array
1414
:values: shell, csharp, go, java, javascript/typescript, python, php, ruby, scala, kotlin
1515

1616
.. meta::
17-
:description: Learn how to query an array and an array element or field, query on the array field as a whole, query if a field is in an array, and query by array size in MongoDB.
17+
:description: Learn how to run various examples of query operations on array fields using MongoDB drivers.
1818
:keywords: compass, code example, motor, java sync, java async, reactive streams, node.js, kotlin coroutine
1919

2020
.. contents:: On this page

0 commit comments

Comments
 (0)