diff --git a/source/tutorial/create-an-auto-incrementing-field.txt b/source/tutorial/create-an-auto-incrementing-field.txt index 4f3ae492332..09d1537b3a6 100644 --- a/source/tutorial/create-an-auto-incrementing-field.txt +++ b/source/tutorial/create-an-auto-incrementing-field.txt @@ -49,7 +49,7 @@ contains the last value of the sequence. #. Create a ``getNextSequence`` function that accepts a ``name`` of the sequence. The function uses the :method:`findAndModify() - ` method to atomically increment the ``seq`` value and return this new value: .. code-block:: javascript