diff --git a/docs/content/concepts/assets/asset-jobs.mdx b/docs/content/concepts/assets/asset-jobs.mdx index d017ed3e61e42..72a7fe840a163 100644 --- a/docs/content/concepts/assets/asset-jobs.mdx +++ b/docs/content/concepts/assets/asset-jobs.mdx @@ -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 diff --git a/docs/dagster-university/pages/dagster-essentials/extra-credit/definition-metadata-asset-descriptions.md b/docs/dagster-university/pages/dagster-essentials/extra-credit/definition-metadata-asset-descriptions.md index 0464a26b7d9cf..ff6ffda030f99 100644 --- a/docs/dagster-university/pages/dagster-essentials/extra-credit/definition-metadata-asset-descriptions.md +++ b/docs/dagster-university/pages/dagster-essentials/extra-credit/definition-metadata-asset-descriptions.md @@ -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: