Skip to content

Commit aa1a3b6

Browse files
committed
Rephrasing.
1 parent c802ff6 commit aa1a3b6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/oale_creator/creator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def __init__(self,
5151
self.texts_path = os.path.join(data_dir, 'texts.jsonl')
5252
config_path = os.path.join(data_dir, 'version.json')
5353

54-
# Freeze the current configuration of the Embeddings Creator.
54+
# Freeze the current configuration of the Creator.
5555
config = {
5656
'data_version' : DATA_VERSION,
5757
'model' : self.model_name,
@@ -70,7 +70,7 @@ def __init__(self,
7070
if not os.path.exists(file):
7171
with open(file, 'wb') as _: pass
7272

73-
# Store the current configuration of the Embeddings Creator.
73+
# Store the current configuration of the Creator.
7474
save_json(config_path, config)
7575

7676
def create(self) -> None:

src/oale_creator/metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
DATA_VERSION: int = 1
2-
"""A version number that flags whether data is compatible with the current version of the Open Australian Legal Embeddings Creator."""
2+
"""A version number that flags whether data is compatible with the current version of the Creator."""

0 commit comments

Comments
 (0)