Skip to content

Commit 41cbb44

Browse files
more feedback
1 parent e7c8c91 commit 41cbb44

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

source/fundamentals/crud/read-operations/change-streams.txt

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,11 @@ code.
8989

9090
To begin watching for changes, run the application. Then, in a separate
9191
application or shell, modify the ``restaurants`` collection. Updating a document
92-
with the ``"name"`` value of ``"Blarney Castle"`` results in the following
92+
that has a ``"name"`` value of ``"Blarney Castle"`` results in the following
9393
change stream output:
9494

9595
.. code-block:: sh
96+
:copyable: false
9697

9798
{ "_id" : { "_data" : "..." }, "operationType" : "update", "clusterTime" : Timestamp(...),
9899
"wallTime" : ISODate("..."), "ns" : { "db" : "sample_restaurants", "coll" : "restaurants" },
@@ -217,7 +218,7 @@ of ``Watch()`` and ``WatchAsync()``:
217218
- | Specifies the collation to use for the change stream cursor.
218219

219220
* - ``Comment``
220-
- | Specifies a comment to attach to the operation.
221+
- | Attaches a comment to the operation.
221222

222223
.. _csharp-change-stream-pre-post-image:
223224

@@ -283,10 +284,11 @@ code.
283284
:end-before: end-change-stream-post-image
284285
:language: csharp
285286

286-
Running the preceding code example and updating a document with the ``"name"``
287+
Running the preceding code example and updating a document that has a ``"name"``
287288
value of ``"Blarney Castle"`` results in the following change stream output:
288289

289290
.. code-block:: sh
291+
:copyable: false
290292

291293
{ "_id" : ObjectId("..."), "name" : "Blarney Castle", "restaurant_id" : "40366356",
292294
"cuisine" : "Traditional Irish", "address" : { "building" : "202-24", "coord" : [-73.925044200000002, 40.5595462],

0 commit comments

Comments
 (0)