From d71dd22612ee360844b8ae6a70a13bba88b5f8b1 Mon Sep 17 00:00:00 2001 From: David Morris Date: Wed, 11 Oct 2023 21:41:51 +0100 Subject: [PATCH] fix: correct inverted syntax --- docs/slower-from-cache.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/slower-from-cache.md b/docs/slower-from-cache.md index 232bd4b0..ccb34b10 100644 --- a/docs/slower-from-cache.md +++ b/docs/slower-from-cache.md @@ -30,13 +30,13 @@ Tasks that move compressed images like pngs, jpegs, or precomputed libraries are === "Groovy" ``` groovy - tasks.named("").configure { + tasks.named('').configure { outputs.cacheIf { false } } ``` === "Kotlin" ``` kotlin - tasks.named('').configure { + tasks.named("").configure { outputs.cacheIf { false } } ```