From 702523878f2fca97508becb725c8f829aea1f15d Mon Sep 17 00:00:00 2001 From: abosshard <23498828+abosshard@users.noreply.github.com> Date: Mon, 1 Jul 2024 12:14:08 +0200 Subject: [PATCH] Update 15-Howto-Track-File-Inputs-and-Outputs.md Correct typo --- .../04-Howto/15-Howto-Track-File-Inputs-and-Outputs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/reference/04-Howto/15-Howto-Track-File-Inputs-and-Outputs.md b/src/reference/04-Howto/15-Howto-Track-File-Inputs-and-Outputs.md index e9b88944b..3900af704 100644 --- a/src/reference/04-Howto/15-Howto-Track-File-Inputs-and-Outputs.md +++ b/src/reference/04-Howto/15-Howto-Track-File-Inputs-and-Outputs.md @@ -210,10 +210,10 @@ inputs to outputs is not known. Like `allInputFiles`, there is an `allOutputFiles` task of return type `Seq[Path]` that is automatically generated for a task, `foo`, if the return type of `foo` is one of `Seq[Path]`, -`Path`, `Seq[File]` or `File`. It is also generated if `foo / outputFiles` is +`Path`, `Seq[File]` or `File`. It is also generated if `foo / fileOutputs` is specified. When both `fileOutputs` is specified and the return type represents a file or collection of files, the result of `allOutputFiles` is the distinct -union of the files returned by the task and the files described by `ouputFiles`. +union of the files returned by the task and the files described by `fileOutputs`. Calling `foo.outputFiles` is syntactic sugar for `(foo / allOutputFiles).value`. ### Filters