Skip to content

Commit

Permalink
Fix module doc strings
Browse files Browse the repository at this point in the history
Signed-off-by: aiudirog <aiudirog@gmail.com>
  • Loading branch information
aiudirog committed Nov 28, 2019
1 parent d35b70d commit 275d7fd
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions aiohappybase/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
HappyBase, a developer-friendly Python library to interact with Apache
HBase.
AIOHappyBase, a developer-friendly Python library to interact asynchronously
with Apache HBase.
"""

__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion aiohappybase/_util.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
HappyBase utility module.
AIOHappyBase utility module.
These functions are not part of the public API.
"""
Expand Down
2 changes: 1 addition & 1 deletion aiohappybase/_version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
HappyBase version module.
AIOHappyBase version module.
This module defines the package version for use in __init__.py and
setup.py.
Expand Down
2 changes: 1 addition & 1 deletion aiohappybase/batch.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
HappyBase Batch module.
AIOHappyBase Batch module.
"""

import logging
Expand Down
2 changes: 1 addition & 1 deletion aiohappybase/connection.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
HappyBase connection module.
AIOHappyBase connection module.
"""

import logging
Expand Down
2 changes: 1 addition & 1 deletion aiohappybase/pool.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
HappyBase connection pool module.
AIOHappyBase connection pool module.
"""

import logging
Expand Down
2 changes: 1 addition & 1 deletion aiohappybase/table.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
HappyBase table module.
AIOHappyBase table module.
"""

import logging
Expand Down

0 comments on commit 275d7fd

Please sign in to comment.