Skip to content

Commit

Permalink
Rename method for printing the task description due to a typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonard Zentgraf authored and dorongold committed Mar 29, 2024
1 parent e61bed5 commit ebaa17f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ abstract class TaskTreeTaskBase extends ProjectBasedReportTask {
}

if (withDescription) {
prnitTaskDescription(graphRenderer, taskNode.task.description, "-> ", Description, Description)
printTaskDescription(graphRenderer, taskNode.task.description, "-> ", Description, Description)
}

}, lastChild)
Expand All @@ -147,7 +147,7 @@ abstract class TaskTreeTaskBase extends ProjectBasedReportTask {
}
}

static void prnitTaskDescription(GraphRenderer graphRenderer, String description, String prefix, StyledTextOutput.Style prefixStyle, StyledTextOutput.Style textStyle) {
static void printTaskDescription(GraphRenderer graphRenderer, String description, String prefix, StyledTextOutput.Style prefixStyle, StyledTextOutput.Style textStyle) {
graphRenderer.startChildren()
graphRenderer.output.println()
graphRenderer.output
Expand Down

0 comments on commit ebaa17f

Please sign in to comment.