From 8c6fa793a54ddabf38c3bac2d0d62e499b577a6e Mon Sep 17 00:00:00 2001 From: Michael Ingeman-Nielsen Date: Tue, 17 Mar 2020 10:44:02 +0100 Subject: [PATCH] fix naming inconsistencies between readme and code (#19) Co-authored-by: Michael Ingeman-Nielsen --- incremental-tasks/README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/incremental-tasks/README.md b/incremental-tasks/README.md index 6053cbc..8643152 100644 --- a/incremental-tasks/README.md +++ b/incremental-tasks/README.md @@ -2,22 +2,22 @@ In the `build.gradle` script, you will find two tasks: -- `generateFoo`, which generates a configurable amount of files -- `transformFoo`, which creates new files based on the files from `generateFoo` +- `generateFoos`, which generates a configurable amount of files +- `transformFoos`, which creates new files based on the files from `generateFoos` -- Run `./gradlew transformFoo -i` twice +- Run `./gradlew transformFoos -i` twice - Q: Which tasks were executed in the second run, and why? Configure inputs and outputs for both tasks, so neither runs when they don't have to. -- Run `./gradlew transformFoo -i` twice +- Run `./gradlew transformFoos -i` twice - Q: Which tasks were executed in the second run, and why? - Modify the `fooCount` property -- Run `./gradlew transformFoo -i` +- Run `./gradlew transformFoos -i` - Q: Which tasks were executed, and why? -- Delete some of the files in `foo/transform` -- Run `./gradlew transformFoo -i` +- Delete some of the files in `foo/transformed` +- Run `./gradlew transformFoos -i` - Q: Which tasks were executed, and why? -- Create a new file, `foo/transform/some-other-output.txt` -- Run `./gradlew transformFoo -i` +- Create a new file, `foo/transformed/some-other-output.txt` +- Run `./gradlew transformFoos -i` - Q: Which tasks were executed, and why?