You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2011/04/22 03:37:04 UTC

svn commit: r1095855 - /tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/LazyAdvisorImpl.java

Author: hlship
Date: Fri Apr 22 01:37:03 2011
New Revision: 1095855

URL: http://svn.apache.org/viewvc?rev=1095855&view=rev
Log:
TAP5-853: Fix typo in JavaDoc

Modified:
    tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/LazyAdvisorImpl.java

Modified: tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/LazyAdvisorImpl.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/LazyAdvisorImpl.java?rev=1095855&r1=1095854&r2=1095855&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/LazyAdvisorImpl.java (original)
+++ tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/services/LazyAdvisorImpl.java Fri Apr 22 01:37:03 2011
@@ -1,4 +1,4 @@
-// Copyright 2009, 2010 The Apache Software Foundation
+// Copyright 2009, 2010, 2011 The Apache Software Foundation
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -49,13 +49,13 @@ public class LazyAdvisorImpl implements 
     {
         final Class thunkType = method.getReturnType();
 
-        final String description = String.format("<%s Thunk for %s>", thunkType.getName(), InternalUtils
-                .asString(method));
+        final String description = String.format("<%s Thunk for %s>", thunkType.getName(),
+                InternalUtils.asString(method));
 
         MethodAdvice advice = new MethodAdvice()
         {
             /**
-             * When the method is invoked, we don't immediately proceed. Intead, we return a thunk instance
+             * When the method is invoked, we don't immediately proceed. Instead, we return a thunk instance
              * that defers its behavior to the lazily invoked invocation.
              */
             public void advise(final Invocation invocation)