diff options
| author | Wouter Bolsterlee <uws@xs4all.nl> | 2012-06-12 00:38:24 +0200 |
|---|---|---|
| committer | Wouter Bolsterlee <uws@xs4all.nl> | 2012-06-12 00:38:24 +0200 |
| commit | 0e7805a0ff8ca25a3eff357a360ca9161caae53b (patch) | |
| tree | 9b9197c73bf761cfb281f35ddf103144d279dd14 /doc | |
| parent | 9469488784b5ab01b9dcb98c16b88f2b75987e25 (diff) | |
| download | happybase-0e7805a0ff8ca25a3eff357a360ca9161caae53b.tar.gz | |
Minor docs update
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/tutorial.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/tutorial.rst b/doc/tutorial.rst index fb9f74a..d90ef3c 100644 --- a/doc/tutorial.rst +++ b/doc/tutorial.rst @@ -21,7 +21,7 @@ Opening a connection ==================== We'll get started by connecting to HBase. Just create a new -:py:class:`Connection`:: +:py:class:`Connection` instance:: import happybase @@ -32,8 +32,8 @@ sure HappyBase speaks the correct wire protocol to HBase:: connection = happybase.Connection('somehost', compat='0.90') -When a :py:class:`Connection` instance is created, it automatically opens a -socket connection to the HBase Thrift server. This behaviour can be disabled by +When a :py:class:`Connection` is created, it automatically opens a socket +connection to the HBase Thrift server. This behaviour can be disabled by setting the `autoconnect` argument to `False`, and opening the connection manually using :py:meth:`Connection.open`:: |
