Revise argument docs for MongoCollection update/remove methods

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@333379 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jeremy Mikola 2014-04-18 23:14:32 +00:00
parent 4daa8ece2f
commit 350e29c7e3
2 changed files with 7 additions and 4 deletions

View file

@ -26,7 +26,7 @@
</term>
<listitem>
<para>
Description of records to remove.
Query criteria for the documents to delete.
</para>
</listitem>
</varlistentry>
@ -45,7 +45,8 @@
<literal>"justOne"</literal>
</para>
<para>
Remove at most one record matching this criteria.
Specify &true; to limit deletion to just one document. If &false; or
omitted, all documents matching the criteria will be deleted.
</para>
</listitem>
&mongo.writes.parameters.fsync;

View file

@ -27,7 +27,7 @@
</term>
<listitem>
<para>
Description of the objects to update.
Query criteria for the documents to update.
</para>
</listitem>
</varlistentry>
@ -37,7 +37,9 @@
</term>
<listitem>
<para>
The object with which to update the matching records.
The object used to update the matched documents. This may either contain
update operators (for modifying specific fields) or be a replacement
document.
</para>
</listitem>
</varlistentry>