From b3aab958528f8ff08933db54d2329ed7524a855a Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Thu, 31 Mar 2016 02:37:16 -0800 Subject: [PATCH] Doc. --- .../src/main/kotlin/com/beust/kobalt/IncrementalTaskInfo.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/IncrementalTaskInfo.kt b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/IncrementalTaskInfo.kt index ba3b549b..661e0c68 100644 --- a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/IncrementalTaskInfo.kt +++ b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/IncrementalTaskInfo.kt @@ -3,8 +3,8 @@ package com.beust.kobalt import com.beust.kobalt.api.Project /** - * @param inputChecksum The checksum for the input to this task. It gets compared against the checksum of - * if they differ, the task gets run. If they are equal, outputChecksums are then compared. + * @param inputChecksum The checksum for the input to this task. It gets compared against the previous checksum + * calculated by Kobalt. If they differ, the task gets run. If they are equal, outputChecksums are then compared. * @param outputChecksum The checksum for the output of this task. If null, the output is absent * and the task will be run. If non null, it gets compared against the checksum of the previous run and * if they differ, the task gets run. Note that this parameter is a closure and not a direct value