Skip to content

Commit bd06c4f

Browse files
authored
DOCSP-45629-fixes-js-block-on-Run-Java-Queries (#14)
1 parent d039e63 commit bd06c4f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/run-java-queries.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ above.
6060

6161
db.getSiblingsDB("production")
6262
.getCollection("trips")
63-
.find( {
64-
"$and" : [
63+
.find({
64+
"$and" : [
6565
{ "trip_status" : "completed" },
6666
{ "driver_id" : driver_id }
67-
]
68-
)
67+
],
68+
})
6969

7070
In this example, ``driver_id`` is a variable that holds a value
7171
determined at runtime. In order to test that your query outputs the

0 commit comments

Comments
 (0)