From d8afbcc6fd2ea400c34973520a51a3e57f412f28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B1=9F=E5=AE=B6=E7=91=8B?= <36886416+JiangJiaWei1103@users.noreply.github.com> Date: Tue, 5 Nov 2024 20:45:46 +0100 Subject: [PATCH] docs: Align note with the output naming convention (#5919) Signed-off-by: JiaWei Jiang --- docs/user_guide/basics/tasks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user_guide/basics/tasks.md b/docs/user_guide/basics/tasks.md index acedcad51e..b76e61f5dc 100644 --- a/docs/user_guide/basics/tasks.md +++ b/docs/user_guide/basics/tasks.md @@ -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: