@@ -89,10 +89,11 @@ code.
89
89
90
90
To begin watching for changes, run the application. Then, in a separate
91
91
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
93
93
change stream output:
94
94
95
95
.. code-block:: sh
96
+ :copyable: false
96
97
97
98
{ "_id" : { "_data" : "..." }, "operationType" : "update", "clusterTime" : Timestamp(...),
98
99
"wallTime" : ISODate("..."), "ns" : { "db" : "sample_restaurants", "coll" : "restaurants" },
@@ -217,7 +218,7 @@ of ``Watch()`` and ``WatchAsync()``:
217
218
- | Specifies the collation to use for the change stream cursor.
218
219
219
220
* - ``Comment``
220
- - | Specifies a comment to attach to the operation.
221
+ - | Attaches a comment to the operation.
221
222
222
223
.. _csharp-change-stream-pre-post-image:
223
224
@@ -283,10 +284,11 @@ code.
283
284
:end-before: end-change-stream-post-image
284
285
:language: csharp
285
286
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"``
287
288
value of ``"Blarney Castle"`` results in the following change stream output:
288
289
289
290
.. code-block:: sh
291
+ :copyable: false
290
292
291
293
{ "_id" : ObjectId("..."), "name" : "Blarney Castle", "restaurant_id" : "40366356",
292
294
"cuisine" : "Traditional Irish", "address" : { "building" : "202-24", "coord" : [-73.925044200000002, 40.5595462],
0 commit comments