From b7033e6f3d8880a073584835933c8421aa1fdfb7 Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Wed, 11 May 2022 16:32:28 +0900 Subject: [PATCH] Fix reference to CheckFormat in README --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index a4956dc8..6c4a40f1 100644 --- a/README.adoc +++ b/README.adoc @@ -150,7 +150,7 @@ In case you want to exclude a package from being checked, for example if you gen [source,groovy,indent=0,subs="normal"] ---- -tasks.withType(io.spring.javaformat.gradle.CheckTask) { +tasks.withType(io.spring.javaformat.gradle.tasks.CheckFormat) { exclude "package/to/exclude" } ----