Skip to content

Commit f0c0143

Browse files
committed
DOC: Fix typos
1 parent 7ac602c commit f0c0143

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ was preventing `ts_out` from being correctly decoded in the Python DBNDecoder
215215
## 0.52.0 - 2025-04-15
216216

217217
#### Enhancements
218-
- Added new optional `id` field to `SubcriptionRequest` class which will be used for improved error messages
218+
- Added new optional `id` field to `SubscriptionRequest` class which will be used for improved error messages
219219
- Upgraded `databento-dbn` to 0.32.0
220220
- Fixed `RType` variant names in Python to match `Schema`
221221
- Added missing Python type declarations for `RType` variants
@@ -892,7 +892,7 @@ This release includes updates to the fields in text encodings (CSV and JSON), yo
892892
- Removed `record_size` property from `DBNStore`
893893
- Removed `bad` condition variant from `batch.get_dataset_condition`
894894
- Removed unused `LiveGateway` enum
895-
- Removed `STATSTICS` from `Schema` enum
895+
- Removed `STATISTICS` from `Schema` enum
896896
- Removed `STATUS` from `Schema` enum
897897
- Removed `GATEWAY_ERROR` from `Schema` enum
898898
- Removed `SYMBOL_MAPPING` from `Schema` enum

notebooks/quickstart.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@
618618
"## Working with the DBNStore\n",
619619
"\n",
620620
"All time series data requests include a metadata header with the following specifications:\n",
621-
"- The original query paramaters (these can be used to re-request the data)\n",
621+
"- The original query parameters (these can be used to re-request the data)\n",
622622
"- Symbology mappings"
623623
]
624624
},
@@ -2028,7 +2028,7 @@
20282028
"\n",
20292029
"It's possible to query for a list of your batch jobs, with optional filter parameters for `state` (the state of the batch job) and `since` (when the job was received). \n",
20302030
"\n",
2031-
"This could help to programatically build and manage larger data pipelines. Once we see the batch job has completed processing (with a state of `done`), then we can download the files.\n",
2031+
"This could help to programmatically build and manage larger data pipelines. Once we see the batch job has completed processing (with a state of `done`), then we can download the files.\n",
20322032
"\n",
20332033
"Note the value of the batch job's `id` which we'll need to provide for download. This is saved to `new_job_id`."
20342034
]
@@ -2150,7 +2150,7 @@
21502150
"metadata": {},
21512151
"source": [
21522152
"## Programmatic downloads\n",
2153-
"Now that the batch job has compeleted (with a state of `done`), we can download the files by providing an output directory path, and the `job_id` (found above):"
2153+
"Now that the batch job has completed (with a state of `done`), we can download the files by providing an output directory path, and the `job_id` (found above):"
21542154
]
21552155
},
21562156
{

tests/test_live_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ async def test_live_start(
380380
mock_live_server: MockLiveServerInterface,
381381
) -> None:
382382
"""
383-
Test the live sends a SesssionStart message upon calling start().
383+
Test the live sends a SessionStart message upon calling start().
384384
"""
385385
# Arrange
386386
live_client.subscribe(

0 commit comments

Comments
 (0)