Skip to content

Commit a216fda

Browse files
committed
Fix typos
1 parent 795bdf9 commit a216fda

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

maxminddb/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
def open_database(
2525
database: Union[AnyStr, int, os.PathLike, IO], mode: int = MODE_AUTO
2626
) -> Union[PyReader, "maxminddb.extension.Reader"]:
27-
"""Open a Maxmind DB database
27+
"""Open a MaxMind DB database
2828
2929
Arguments:
3030
database -- A path to a valid MaxMind DB file such as a GeoIP2 database
@@ -60,4 +60,4 @@ def Reader(database): # pylint: disable=invalid-name
6060
__version__ = "1.5.4"
6161
__author__ = "Gregory Oschwald"
6262
__license__ = "Apache License, Version 2.0"
63-
__copyright__ = "Copyright 2013-2019 Maxmind, Inc."
63+
__copyright__ = "Copyright 2013-2019 MaxMind, Inc."

maxminddb/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
maxminddb.types
33
~~~~~~~~~~~~~~~
44
5-
This module provides a Record type the represents a database record.
5+
This module provides a Record type that represents a database record.
66
"""
77
from typing import AnyStr, Dict, List, Union
88

0 commit comments

Comments
 (0)