diff options
author | Tim Gates <tim.gates@iress.com> | 2022-07-12 18:02:24 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-12 10:02:24 +0200 |
commit | 8d74c3d770fb2398a5748f6ec50f1ea889ff56e1 (patch) | |
tree | 2f77906f9f71d761d884781f10d52281175ec8a5 /happybase/connection.py | |
parent | f5b6d104140c2be93e4175c0c844aaf094eb43da (diff) | |
download | happybase-master.tar.gz |
There is a small typo in happybase/connection.py.
Should read `underlying` rather than `underyling`.
Diffstat (limited to 'happybase/connection.py')
-rw-r--r-- | happybase/connection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/happybase/connection.py b/happybase/connection.py index 8b1a60d..6852bbb 100644 --- a/happybase/connection.py +++ b/happybase/connection.py @@ -176,7 +176,7 @@ class Connection(object): self.transport.open() def close(self): - """Close the underyling transport to the HBase instance. + """Close the underlying transport to the HBase instance. This method closes the underlying Thrift transport (TCP connection). """ |