Skip to content

Commit 2a761d3

Browse files
committed
Fix formatting issue in collection.py PYTHON-619
1 parent f423c07 commit 2a761d3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pymongo/collection.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def save(self, to_save, manipulate=True,
206206
207207
By default an acknowledgment is requested from the server that the
208208
save was successful, raising :class:`~pymongo.errors.OperationFailure`
209-
if an error occurred. **Passing ``w=0`` disables write acknowledgement
209+
if an error occurred. **Passing w=0 disables write acknowledgement
210210
and all other write concern options.**
211211
212212
:Parameters:
@@ -274,7 +274,7 @@ def insert(self, doc_or_docs, manipulate=True,
274274
275275
By default an acknowledgment is requested from the server that the
276276
insert was successful, raising :class:`~pymongo.errors.OperationFailure`
277-
if an error occurred. **Passing ``w=0`` disables write acknowledgement
277+
if an error occurred. **Passing w=0 disables write acknowledgement
278278
and all other write concern options.**
279279
280280
:Parameters:
@@ -396,7 +396,7 @@ def update(self, spec, document, upsert=False, manipulate=False,
396396
397397
By default an acknowledgment is requested from the server that the
398398
update was successful, raising :class:`~pymongo.errors.OperationFailure`
399-
if an error occurred. **Passing ``w=0`` disables write acknowledgement
399+
if an error occurred. **Passing w=0 disables write acknowledgement
400400
and all other write concern options.**
401401
402402
There are many useful `update modifiers`_ which can be used
@@ -556,7 +556,7 @@ def remove(self, spec_or_id=None, safe=None, multi=True, **kwargs):
556556
557557
By default an acknowledgment is requested from the server that the
558558
remove was successful, raising :class:`~pymongo.errors.OperationFailure`
559-
if an error occurred. **Passing ``w=0`` disables write acknowledgement
559+
if an error occurred. **Passing w=0 disables write acknowledgement
560560
and all other write concern options.**
561561
562562
:Parameters:

0 commit comments

Comments
 (0)