Skip to content

Commit 1f2ec1f

Browse files
fix: correct spelling mistakes (#153)
Fix spelling typos identified using [CodeSpell](https://github.com/codespell-project/codespell) Co-authored-by: Simone Basso <bassosimone@gmail.com>
1 parent 0cf1115 commit 1f2ec1f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

library/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ uv run pyright --verbose
178178
# - "Loading pyproject.toml file at ..."
179179
# - "Found X source files" (should be ~5 files)
180180
# - Python version and search paths
181-
# - "X errors, Y warnings, Z informations"
181+
# - "X errors, Y warnings, Z information"
182182
```
183183

184184
If you see `"Found 0 source files"`, the configuration is wrong.

library/src/iqb/calculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def calculate_binary_requirement_score(self, network_requirement, value, thresho
8282
def calculate_iqb_score(self, data=None, print_details=False):
8383
"""Calculates IQB score based on given data."""
8484

85-
# TODO(bassosimone): remove the default data sample in a subsequent interation.
85+
# TODO(bassosimone): remove the default data sample in a subsequent iteration.
8686
sample_data = {
8787
"m-lab": {
8888
"download_throughput_mbps": 15,

library/src/iqb/cli/cache_status.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def status(data_dir: str | None, show_all: bool) -> None:
3232
printed using the following status letter:
3333
3434
\b
35-
' ' not modifed (on dish, in cache, same hash)
35+
' ' not modified (on disk, in cache, same hash)
3636
"""
3737
resolved = data_dir_or_default(data_dir)
3838
manifest_path = manifest_path_for_data_dir(resolved)

library/src/iqb/pipeline/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
simplifies specifying time ranges significantly (e.g., October 2025 is
9696
represented using `since=20251001T000000Z` and `until=20251101T000000Z`).
9797
98-
The *current* implementation of the pipline enforces YYYY-MM-DD dates
98+
The *current* implementation of the pipeline enforces YYYY-MM-DD dates
9999
because the underlying queries only support dates. Yet, we design the data
100100
format to accommodate for more fine grained time intervals in the future.
101101

library/src/iqb/pipeline/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def get_cache_entry(
114114
end_date=end_date,
115115
)
116116

117-
# 2. prepare for synching from BigQuery
117+
# 2. prepare for syncing from BigQuery
118118
if enable_bigquery:
119119
entry.syncers.append(self._bq_syncer)
120120

0 commit comments

Comments
 (0)