Skip to content

Commit

Permalink
doc(runningGradleBuilds.tutorial): fix task declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
dancer1325 committed May 2, 2024
1 parent 7e44a1e commit 015f9d6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,13 @@ Here is an example of explicit task dependency:
----
tasks.register("hello") {
doLast {
println('Hello!')
println("Hello!")
}
}
tasks.register("greet") {
doLast {
println('How are you?')
println("How are you?")
}
dependsOn("hello")
}
Expand Down

0 comments on commit 015f9d6

Please sign in to comment.