Skip to content

Commit

Permalink
Fix minor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
gtim committed Jul 7, 2024
1 parent 8e093fd commit 2a675dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/content/concepts/assets/asset-jobs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ description: Asset jobs are the main unit for materializing and monitoring asset

## Creating asset jobs

In this section, we'll demonstrate how to create a few asest jobs that target the following assets:
In this section, we'll demonstrate how to create a few asset jobs that target the following assets:

```python file=/concepts/assets/non_argument_deps.py startafter=start_marker endbefore=end_marker
from dagster import asset
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ When defined, asset descriptions will be displayed in the Dagster UI alongside t

## Using docstrings

As you went through this course, you might have noticed that the asests all contain **docstrings.** A [Python docstring, or documentation string](https://www.datacamp.com/tutorial/docstrings-python), embeds documentation about a class, module, function, or method definition in the code itself. While code comments serve a similar purpose, docstrings support built-in Python functionality, like [`help`](https://docs.python.org/3/library/functions.html#help).
As you went through this course, you might have noticed that the assets all contain **docstrings.** A [Python docstring, or documentation string](https://www.datacamp.com/tutorial/docstrings-python), embeds documentation about a class, module, function, or method definition in the code itself. While code comments serve a similar purpose, docstrings support built-in Python functionality, like [`help`](https://docs.python.org/3/library/functions.html#help).

Docstrings are defined by including a string, surrounded by triple quotes (`”””`) as the first statement in an object’s definition. For example:

Expand Down

0 comments on commit 2a675dc

Please sign in to comment.