summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2017-02-28 11:28:11 +0000
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2017-02-28 11:28:11 +0000
commita2bc3c7bcb7781f34c34e5db05abf6a106fc592e (patch)
tree10ba0eaae41a03a1cd0b93c8a1d01bb47cd8a1ac /doc/src
parentc871c49f55e2e1787f1c2d7edeaf0f8f5c876db3 (diff)
downloadpsycopg2-a2bc3c7bcb7781f34c34e5db05abf6a106fc592e.tar.gz
Fixed doc typo
Close #515
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/module.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/module.rst b/doc/src/module.rst
index 2bd259e..1c99825 100644
--- a/doc/src/module.rst
+++ b/doc/src/module.rst
@@ -28,7 +28,7 @@ The module interface respects the standard defined in the |DBAPI|_.
or using a set of keyword arguments::
- conn = psycopg2.connect(dbname"test", user="postgres", password="secret")
+ conn = psycopg2.connect(dbname="test", user="postgres", password="secret")
or using a mix of both: if the same parameter name is specified in both
sources, the *kwargs* value will have precedence over the *dsn* value.