doc/3.19.rst
changeset 9486 9a62c52d167e
parent 9405 7fc5e13d049f
child 9513 a7e0746f010c
--- a/doc/3.19.rst	Mon Feb 03 18:19:26 2014 +0100
+++ b/doc/3.19.rst	Thu Jan 30 16:45:05 2014 +0100
@@ -48,16 +48,17 @@
 
 There are three relevant functions for now:
 
-* ``repoapi.get_repository(config)`` takes a config object and return credential
+* ``repoapi.get_repository(config=config)`` takes a config object and returns a
+  Repository object.
 
-* ``repoapi.connect(repo, **credentials)`` returns a ClientConnection
+* ``repoapi.connect(repo, login, **credentials)`` returns a ClientConnection
   associated with the user identified by the credentials. The
   ClientConnection is associated with its own Session that is closed
   when the ClientConnection is closed. A ClientConnection is a
   Connection-like object to be used client side.
 
 * ``repoapi.anonymous_cnx(repo)`` returns a ClientConnection associated
-  with the anonymous user if describe in the Config.
+  with the anonymous user if described in the config.
 
 
 repoapi.ClientConnection replace dbapi.Connection and company