From d18c3c77bc4a75975753719a98b25b35602e308d Mon Sep 17 00:00:00 2001 From: JiaWei Jiang Date: Sat, 26 Oct 2024 12:09:56 +0800 Subject: [PATCH] docs: Align note with the output naming convention 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: