Skip to content

Commit

Permalink
Added word typo fixes, measured memory usage
Browse files Browse the repository at this point in the history
  • Loading branch information
the-lay committed Mar 19, 2024
1 parent ddf73bd commit cc5ff45
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Install with PIP: `pip install friendlywords`
```python
import friendlywords as fw

# optional preloading, load all word lists into memory (~TODO measure MB)
# optional preloading, load all word lists into memory (~41KB)
# otherwise every generation would involve reading the files
fw.preload()

Expand Down
6 changes: 3 additions & 3 deletions friendlywords/data/objects.txt
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,8 @@ boar
board
boat
boater
bobcat
bobble
bobcat
bobolink
bolt
bongo
Expand Down Expand Up @@ -830,12 +830,12 @@ dogwood
dollar
dolomite
dolphin
doppler
domain
donkey
donut
doom
door
doppler
dormouse
double
dove
Expand Down Expand Up @@ -1637,11 +1637,11 @@ marmot
marquess
marquis
mars
marscapone
marshmallow
marsupial
marten
mascara
mascarpone
mask
mass
mastodon
Expand Down
2 changes: 1 addition & 1 deletion friendlywords/data/predicates.txt
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ canyon
capable
capricious
caramel
carefree
carbonated
carefree
careful
caring
carnation
Expand Down
2 changes: 1 addition & 1 deletion friendlywords/friendlywords.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class FriendlyWords(ModuleType):

__version__ = '1.1.2'
__version__ = '1.1.3'
DATA_PATH = os.path.join(os.path.dirname(__file__), 'data')
WORD_LISTS = {
'p': {
Expand Down

0 comments on commit cc5ff45

Please sign in to comment.