Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix "an asset definitions" typos #21609

Merged
merged 1 commit into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/concepts/assets/software-defined-assets.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ An asset definition includes the following:

### Basic asset definitions

The easiest way to create an asset definitions is with the <PyObject object="asset" decorator /> decorator.
The easiest way to create an asset definition is with the <PyObject object="asset" decorator /> decorator.

```python file=/concepts/assets/basic_asset_definition.py
import json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ defs = Definitions(

Here's an equivalent job using asset definitions.

**Note:** Because some ops don't correspond to assets, this job uses <PyObject object="op" decorator /> and <PyObject object="graph" decorator /> APIs and <PyObject object="AssetsDefinition" method="from_graph" /> to wrap a graph in an asset definitions:
**Note:** Because some ops don't correspond to assets, this job uses <PyObject object="op" decorator /> and <PyObject object="graph" decorator /> APIs and <PyObject object="AssetsDefinition" method="from_graph" /> to wrap a graph in an asset definition:

```python file=/guides/dagster/enriching_with_software_defined_assets/sda_graph.py
from pandas import DataFrame
Expand Down