Minor typos fixes in docs

This commit is contained in:
Slam
2014-11-24 16:57:43 +02:00
parent 263616ef01
commit e0f1e79e6a
10 changed files with 34 additions and 32 deletions

View File

@@ -23,14 +23,14 @@ arguments should be provided::
connect('project1', username='webapp', password='pwd123')
Uri style connections are also supported - just supply the uri as
URI style connections are also supported - just supply the uri as
the :attr:`host` to
:func:`~mongoengine.connect`::
connect('project1', host='mongodb://localhost/database_name')
Note that database name from uri has priority over name
in ::func:`~mongoengine.connect`
in :func:`~mongoengine.connect`
ReplicaSets
===========
@@ -115,3 +115,4 @@ access to the same Group document across collection::
with switch_collection(Group, 'group2000') as Group:
Group(name="hello Group 2000 collection!").save() # Saves in group2000 collection