Skip to content

Commit

Permalink
fix documentation typos (#1240)
Browse files Browse the repository at this point in the history
fix typos

Signed-off-by: troychiu <[email protected]>
  • Loading branch information
troychiu authored Nov 13, 2023
1 parent dcac4c5 commit 5f8b78c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,11 @@ def parent_wf(a: int) -> Tuple[int, str, str]:
if __name__ == "__main__":
print(f"Running parent_wf(a=3) {parent_wf(a=3)}")


# %% [markdown]
# Interestingly, we can nest a workflow that has a subworkflow within a workflow.
# Workflows can be simply composed from other workflows, even if they are standalone entities. Each of the
# workflows in this module can exist and run independently.
# %%
@workflow
def nested_parent_wf(a: int) -> Tuple[int, str, str, str]:
x, y = my_subwf(a=a)
Expand Down
2 changes: 1 addition & 1 deletion examples/basics/basics/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# 4. Independently executable
# 5. Suitable for unit testing
#
# A Flyte task operates within its own container and and runs on a [Kubernetes pod](https://kubernetes.io/docs/concepts/workloads/pods/).
# A Flyte task operates within its own container and runs on a [Kubernetes pod](https://kubernetes.io/docs/concepts/workloads/pods/).
# It can be classified into two types:
#
# 1. A task associated with a Python function. Executing the task is the same as executing the function.
Expand Down

0 comments on commit 5f8b78c

Please sign in to comment.