Skip to content

Commit 6fe08e1

Browse files
fix: typo in adding-partitions-to-assets.md (#19568)
## Summary & Motivation Simple typo I noticed during the [Partitions lesson](https://courses.dagster.io/courses/take/dagster-essentials/multimedia/48123807-adding-partitions-to-assets) ## How I Tested These Changes n/a
1 parent 4a322c8 commit 6fe08e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/dagster-university/pages/dagster-essentials/lesson-8/adding-partitions-to-assets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ To add the partition to the asset:
5252
def taxi_trips_file(context):
5353
```
5454

55-
**Note**: The `context` argument isn’t specific to partitions. However, this is the first time you've used it in Dagster University. The `context` argument provides information about how Dagster is running and materializing your asset. For example, you can use it to find out which partition Dagster is materializing, which job triggered the materialization, or what metadata was been attached to its previous materializations.
55+
**Note**: The `context` argument isn’t specific to partitions. However, this is the first time you've used it in Dagster University. The `context` argument provides information about how Dagster is running and materializing your asset. For example, you can use it to find out which partition Dagster is materializing, which job triggered the materialization, or what metadata was attached to its previous materializations.
5656

5757
4. In the original asset code, the logic was hard-coded to specifically fetch data for March 2023 (`'2023-03'`). Use the `context` argument’s `asset_partition_key_for_output()` method to dynamically fetch a specific partition’s month of data:
5858

0 commit comments

Comments
 (0)