Skip to content

Commit 900c152

Browse files
committed
rr feedback
1 parent 1129cc8 commit 900c152

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

source/aggregation/stages.txt

+4-5
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,13 @@ to construct a stage in the Query API syntax. Then, pass the BSON document to th
8585
``PipelineDefinitionBuilder.AppendStage()`` method. This syntax supports all stages
8686
in the aggregation pipeline, but doesn't provide type hints or type safety.
8787

88-
The following code example shows how to add ``$unset``, an aggregation
89-
stage without a corresponding builder method, to an empty aggregation pipeline:
88+
The following code example shows how to add the ``$unset`` stage to an empty aggregation
89+
pipeline:
9090

9191
.. code-block:: csharp
9292

9393
var pipeline = new EmptyPipelineDefinition<BsonDocument>()
94-
.AppendStage<BsonDocument, BsonDocument, BsonDocument>("{ $unset: "field1" }");
94+
.AppendStage<BsonDocument, BsonDocument, BsonDocument>("{ $unset: 'field1' }");
9595

9696
.. important::
9797

@@ -332,8 +332,7 @@ to your pipeline.
332332

333333
This stage is available only for MongoDB Atlas clusters, and is not
334334
available for self-managed deployments. To learn more, see
335-
:atlas:`Atlas Search Aggregation Pipeline Stages
336-
</reference/atlas-search/query-syntax>` in the Atlas documentation.
335+
:ref:`Atlas Vector Search <csharp-atlas-vector-search>`.
337336
- :ref:`VectorSearch() <csharp-aggregation-vectorsearch>`
338337

339338
API Documentation

0 commit comments

Comments
 (0)