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

[Docs] Align Note with the Output Naming Convention #5919

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions docs/user_guide/basics/tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ We create a task that computes the slope of a regression line:
```

:::{note}
Flytekit will assign a default name to the output variable like `out0`.
Flytekit will assign a default name to the output variable like `o0`.
In case of multiple outputs, each output will be numbered in the order
starting with 0, e.g., -> `out0, out1, out2, ...`.
starting with 0, e.g., `o0`, `o1`, `o2`, etc.
:::

You can execute a Flyte task just like any regular Python function:
Expand Down
Loading