MNG-5625: Fix typo
Project: http://git-wip-us.apache.org/repos/asf/maven/repo Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/bd27f781 Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/bd27f781 Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/bd27f781 Branch: refs/heads/master Commit: bd27f7814fcc1b0d07a500f9dc9b14c89c3484e2 Parents: 9468599 Author: Pavel Sorokin <pavel.soro...@nerro.eu> Authored: Sat May 24 12:29:09 2014 +0200 Committer: Pavel Sorokin <pavel.soro...@nerro.eu> Committed: Sat May 24 12:29:09 2014 +0200 ---------------------------------------------------------------------- .../java/org/apache/maven/lifecycle/internal/LifecycleStarter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven/blob/bd27f781/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleStarter.java ---------------------------------------------------------------------- diff --git a/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleStarter.java b/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleStarter.java index 5e67e4d..3b06c72 100644 --- a/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleStarter.java +++ b/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleStarter.java @@ -115,7 +115,7 @@ public class LifecycleStarter if ( degreeOfConcurrency >= 2 ) { logger.info( "" ); - logger.info( String.format( "Using the %s implemenation with a thread count of %d", builder.getClass().getSimpleName(), degreeOfConcurrency ) ); + logger.info( String.format( "Using the %s implementation with a thread count of %d", builder.getClass().getSimpleName(), degreeOfConcurrency ) ); } builder.build( session, reactorContext, projectBuilds, taskSegments, reactorBuildStatus );