You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by pa...@apache.org on 2015/06/09 06:51:22 UTC

incubator-groovy git commit: fix typo

Repository: incubator-groovy
Updated Branches:
  refs/heads/master ee779e34a -> b254be987


fix typo


Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/b254be98
Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/b254be98
Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/b254be98

Branch: refs/heads/master
Commit: b254be987377cfd6969af570cbfc29f37908cc07
Parents: ee779e3
Author: pascalschumacher <pa...@gmx.net>
Authored: Tue Jun 9 06:51:06 2015 +0200
Committer: pascalschumacher <pa...@gmx.net>
Committed: Tue Jun 9 06:51:06 2015 +0200

----------------------------------------------------------------------
 gradle/quality.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/b254be98/gradle/quality.gradle
----------------------------------------------------------------------
diff --git a/gradle/quality.gradle b/gradle/quality.gradle
index 29e115d..020a32b 100644
--- a/gradle/quality.gradle
+++ b/gradle/quality.gradle
@@ -155,7 +155,7 @@ task rat(type: JavaExec) {
     classpath = files(configurations.rat)
     args = ['-E', ratExcludesFilePath, '--dir', '.']
     doFirst {
-        println "Runing Apache RAT. Exclusions are defined in: $ratExcludesFilePath"
+        println "Running Apache RAT. Exclusions are defined in: $ratExcludesFilePath"
         println "Using the following exclusions:\n${new File(ratExcludesFilePath).text}"
     }
 }