Skip to content

Commit 675afeb

Browse files
Fix typos
1 parent 8e1386e commit 675afeb

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

pybliometrics/sciencedirect/article_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def __init__(self,
109109
be checked. `ArticleMetadata` will perform the
110110
action specified in `integrity_action` if
111111
elements in these fields are missing. This
112-
helps avoiding idiosynchratically missing
112+
helps to avoid idiosynchratically missing
113113
elements that should always be present
114114
(e.g., EID or source ID).
115115
:param integrity_action: What to do in case integrity of provided fields

pybliometrics/sciencedirect/sciencedirect_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def __init__(self,
9898
be checked. `ArticleMetadata` will perform the
9999
action specified in `integrity_action` if
100100
elements in these fields are missing. This
101-
helps avoiding idiosynchratically missing
101+
helps to avoid idiosynchratically missing
102102
elements that should always be present
103103
(e.g., doi or authors).
104104
:param integrity_action: What to do in case integrity of provided fields

pybliometrics/scopus/affiliation_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def __init__(self,
6868
be checked. `AffiliationSearch` will perform
6969
the action specified in `integrity_action`
7070
if elements in these fields are missing.
71-
This helps avoiding idiosynchratically missing
71+
This helps to avoid idiosynchratically missing
7272
elements that should always be present
7373
(e.g. EID or name).
7474
:param integrity_action: What to do in case integrity of provided fields

pybliometrics/scopus/author_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def __init__(self,
7676
be checked. `ScopusSearch` will perform the
7777
action specified in `integrity_action` if
7878
elements in these fields are missing. This
79-
helps avoiding idiosynchratically missing
79+
helps to avoid idiosynchratically missing
8080
elements that should always be present
8181
(e.g., EID or source ID).
8282
:param integrity_action: What to do in case integrity of provided fields

pybliometrics/scopus/scopus_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def __init__(self,
153153
be checked. `ScopusSearch` will perform the
154154
action specified in `integrity_action` if
155155
elements in these fields are missing. This
156-
helps avoiding idiosynchratically missing
156+
helps to avoid idiosynchratically missing
157157
elements that should always be present
158158
(e.g., EID or source ID).
159159
:param integrity_action: What to do in case integrity of provided fields

pybliometrics/scopus/serial_title.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def _create_namedtuple(data, mode, info):
4242
year = data.get(f'citeScore{mode}Year')
4343
cite_score = data.get(f'citeScore{mode}')
4444

45-
# To be consistent with old verion
45+
# To be consistent with old version
4646
if (year is None) and (cite_score is None):
4747
return None
4848

0 commit comments

Comments
 (0)