From 4e9ca49e1f1b9f274cd85628a4bc2f5e1fdfa573 Mon Sep 17 00:00:00 2001
From: admiralobvious <aferlandqc@gmail.com>
Date: Sun, 10 Aug 2014 00:53:30 -0400
Subject: [PATCH] cleanup

---
 docs/index.rst | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/index.rst b/docs/index.rst
index 15e09b8..6303a72 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -19,7 +19,7 @@ First, install Flask-SimpleLDAP:
     $ pip install flask-simpleldap
 
 Flask-SimpleLDAP depends, and will install for you, recent versions of Flask
-(0.9 or later) and Python-LDAP. Flask-SimpleLDAP is compatible
+(0.9 or later) and python-ldap. Flask-SimpleLDAP is compatible
 with and tested on Python 2.6 and 2.7.
 
 Next, add a :class:`~flask_simpleldap.LDAP` to your code and at least the three
@@ -33,8 +33,8 @@ required configuration options:
     app = Flask(__name__)
     ldap = LDAP(app)
 
-    app.config['LDAP_BASE_DN'] = 'dc=company,dc=org'
-    app.config['LDAP_USERNAME'] = 'cn=ldap_user,ou=users,dc=company,dc=org'
+    app.config['LDAP_BASE_DN'] = 'OU=users,dc=example,dc=org'
+    app.config['LDAP_USERNAME'] = 'CN=user,OU=Users,DC=example,DC=org'
     app.config['LDAP_PASSWORD'] = 'password'
 
 
-- 
GitLab