@@ -89,10 +89,11 @@ code.
8989
9090To begin watching for changes, run the application. Then, in a separate
9191application 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
9393change 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"``
287288value 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