diff --git a/source/tutorial/limit-number-of-elements-in-updated-array.txt b/source/tutorial/limit-number-of-elements-in-updated-array.txt index d15beabb872..cab503c15fb 100644 --- a/source/tutorial/limit-number-of-elements-in-updated-array.txt +++ b/source/tutorial/limit-number-of-elements-in-updated-array.txt @@ -35,7 +35,7 @@ Consider the following document in the collection ``students``: ] } -The the following update uses the :operator:`$push` operator with: +The following update uses the :operator:`$push` operator with: - the :operator:`$each` modifier to append to the array 2 new elements, @@ -48,7 +48,7 @@ The the following update uses the :operator:`$push` operator with: .. code-block:: javascript db.students.update( - { _id: 1 }, + { _id: 1 }, { $push: { scores: { $each : [ { attempt: 3, score: 7 }, { attempt: 4, score: 4 } @@ -76,7 +76,7 @@ the ``scores`` array: "scores" : [ { "attempt" : 3, "score" : 7 }, { "attempt" : 2, "score" : 8 }, - { "attempt" : 1, "score" : 10 } + { "attempt" : 1, "score" : 10 } ] }