Skip to content

Commit 6daf450

Browse files
committed
Update changeStream.txt
Adds a missing closing bracket reported in Slack via feedback.
1 parent 7907c4a commit 6daf450

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/usage-examples/changeStream.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ In the example below, the ``$match`` stage will match all change event documents
1919

2020
.. code-block:: javascript
2121

22-
const pipeline = [ { $match: { runtime: { $lt: 15 } } ];
22+
const pipeline = [ { $match: { runtime: { $lt: 15 } } } ];
2323
const changeStream = collection.watch(pipeline);
2424

2525
The ``watch()`` method accepts an ``options`` object as the second parameter. Refer to the links at the end of this

0 commit comments

Comments
 (0)