Skip to content

Commit

Permalink
fix: correct inverted syntax (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
codefish1 authored Nov 7, 2023
1 parent 0c5d2b4 commit 6da9389
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/slower-from-cache.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ Tasks that move compressed images like pngs, jpegs, or precomputed libraries are

=== "Groovy"
``` groovy
tasks.named("<taskname>").configure {
tasks.named('<taskname>').configure {
outputs.cacheIf { false }
}
```
=== "Kotlin"
``` kotlin
tasks.named('<taskname>').configure {
tasks.named("<taskname>").configure {
outputs.cacheIf { false }
}
```
Expand Down

0 comments on commit 6da9389

Please sign in to comment.