Skip to content

WRITING-911 #2124

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/reference/method/db.collection.save.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Definition

.. method:: db.collection.save()

Updates an existing document or inserts a new document, depending on
Updates an existing :doc:`document </core/document>` or inserts a new document, depending on
its ``document`` parameter.

The :method:`~db.collection.save()` method has the following form:
Expand Down Expand Up @@ -86,7 +86,7 @@ contain the ``_id`` field:

db.products.save( { item: "book", qty: 40 } )

During the insert, :program:`mongod` will create the ``_id`` field with
During the insert, the shell will create the ``_id`` field with
a unique :doc:`/reference/object-id` value, as verified by the inserted
document:

Expand Down