Skip to content

Commit

Permalink
fix: correct inverted syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
codefish1 authored Oct 11, 2023
1 parent 0c5d2b4 commit d71dd22
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 d71dd22

Please sign in to comment.