summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWouter Bolsterlee <uws@xs4all.nl>2014-01-25 21:45:30 +0100
committerWouter Bolsterlee <uws@xs4all.nl>2014-01-25 21:45:30 +0100
commitc02cd80697ca82fba804dd967b07908b4350f5b9 (patch)
tree4d0575c65a3d7774b8692293a819236c17a94e5a
parent9f95019aa65b1448302f29c54e825a62caac160c (diff)
downloadhappybase-c02cd80697ca82fba804dd967b07908b4350f5b9.tar.gz
Use 'argument' instead of 'parameter' in user guide
-rw-r--r--doc/user.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/user.rst b/doc/user.rst
index 57964aa..521e991 100644
--- a/doc/user.rst
+++ b/doc/user.rst
@@ -30,11 +30,11 @@ We'll get started by connecting to HBase. Just create a new
In some setups, the :py:class:`Connection` class needs some additional
information about the HBase version it will be connecting to, and which Thrift
transport to use. If you're still using HBase 0.90.x, you need to set the
-`compat` parameter to make sure HappyBase speaks the correct wire protocol.
+`compat` argument to make sure HappyBase speaks the correct wire protocol.
Additionally, if you're using HBase 0.94 with a non-standard Thrift transport
-mode, make sure to supply the right `transport` parameter. See the API
+mode, make sure to supply the right `transport` argument. See the API
documentation for the :py:class:`Connection` class for more information about
-these parameters and their supported values.
+these arguments and their supported values.
When a :py:class:`Connection` is created, it automatically opens a socket
connection to the HBase Thrift server. This behaviour can be disabled by
@@ -116,7 +116,7 @@ application, e.g. for a project ``myproject`` all tables have names like
``myproject_XYZ``.
Instead of adding this application-specific prefix each time a table name is
-passed to HappyBase, the `table_prefix` parameter to :py:class:`Connection` can
+passed to HappyBase, the `table_prefix` argument to :py:class:`Connection` can
take care of this. HappyBase will prepend that prefix (and an underscore) to
each table name handled by that :py:class:`Connection` instance. For example::
@@ -211,7 +211,7 @@ timestamp up to the specified timestamp::
By default, HappyBase does not include timestamps in the results it returns. In
your application needs access to the timestamps, simply set the
-`include_timestamp` parameter to ``True``. Now, each cell in the result will be
+`include_timestamp` argument to ``True``. Now, each cell in the result will be
returned as a `(value, timestamp)` tuple instead of just a value::
row = table.row('row-key', columns=['cf1:col1'], include_timestamp=True)