@@ -213,7 +213,7 @@ use the ``ldap`` user provider.
213213 data. It's a static user defined by its username and password (for improved
214214 security, define the password as an environment variable).
215215
216- If your LDAP server allowsto retrieve information anonymously, you can
216+ If your LDAP server allowsretrieval of information anonymously, you can
217217 set the ``search_dn `` and ``search_password `` options to ``null ``.
218218
219219The ``ldap `` user provider supports many different configuration options:
@@ -240,15 +240,15 @@ search_dn
240240**type **: ``string `` **default **: ``null ``
241241
242242This is your read-only user's DN, which will be used to authenticate
243- against the LDAP serverin order to fetch the user's information.
243+ against the LDAP server to fetch the user's information.
244244
245245search_password
246246...............
247247
248248**type **: ``string `` **default **: ``null ``
249249
250250This is your read-only user's password, which will be used to authenticate
251- against the LDAP serverin order to fetch the user's information.
251+ against the LDAP server to fetch the user's information.
252252
253253default_roles
254254.............
@@ -302,7 +302,7 @@ load the user ``fabpot``, the final string will be: ``(uid=fabpot)``.
302302If you pass ``null `` as the value of this option, the default filter is used
303303``({uid_key}={username}) ``.
304304
305- In order to prevent `LDAP injection `_, the username will be escaped.
305+ To prevent `LDAP injection `_, the username will be escaped.
306306
307307The syntax for the ``filter `` key is defined by `RFC4515 `_.
308308
@@ -329,7 +329,7 @@ dn_string
329329
330330**type **: ``string `` **default **: ``{username} ``
331331
332- This key defines the form of the string usedin order to compose the
332+ This key defines the form of the string used to compose the
333333DN of the user, from the username. The ``{username} `` string is
334334replaced by the actual username of the person trying to authenticate.
335335