From 454988f657ae3a8c8b50d9f2815976a03e764a8d Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Tue, 4 Jan 2022 17:19:38 -0300 Subject: [PATCH] Fix typo :facepalm: --- help.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/help.go b/help.go index a9ae633b..ca0d7841 100644 --- a/help.go +++ b/help.go @@ -11,17 +11,17 @@ import ( // ListTasksWithDesc reports tasks that have a description spec. func (e *Executor) ListTasksWithDesc() { - e.pringTasks(false) + e.printTasks(false) return } // ListAllTasks reports all tasks, with or without a description spec. func (e *Executor) ListAllTasks() { - e.pringTasks(true) + e.printTasks(true) return } -func (e *Executor) pringTasks(listAll bool) { +func (e *Executor) printTasks(listAll bool) { var tasks []*taskfile.Task if listAll { tasks = e.allTaskNames()