Skip to content

Commit 275d7fd

Browse files
committed
Fix module doc strings
Signed-off-by: aiudirog <[email protected]>
1 parent d35b70d commit 275d7fd

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

aiohappybase/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
HappyBase, a developer-friendly Python library to interact with Apache
3-
HBase.
2+
AIOHappyBase, a developer-friendly Python library to interact asynchronously
3+
with Apache HBase.
44
"""
55

66
__all__ = [

aiohappybase/_util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
HappyBase utility module.
2+
AIOHappyBase utility module.
33
44
These functions are not part of the public API.
55
"""

aiohappybase/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
HappyBase version module.
2+
AIOHappyBase version module.
33
44
This module defines the package version for use in __init__.py and
55
setup.py.

aiohappybase/batch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
HappyBase Batch module.
2+
AIOHappyBase Batch module.
33
"""
44

55
import logging

aiohappybase/connection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
HappyBase connection module.
2+
AIOHappyBase connection module.
33
"""
44

55
import logging

aiohappybase/pool.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
HappyBase connection pool module.
2+
AIOHappyBase connection pool module.
33
"""
44

55
import logging

aiohappybase/table.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
HappyBase table module.
2+
AIOHappyBase table module.
33
"""
44

55
import logging

0 commit comments

Comments
 (0)