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 2012/01/26 01:51:06 UTC

svn commit: r1236002 - /tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/ServiceLifecycle2.java

Author: hlship
Date: Thu Jan 26 00:51:05 2012
New Revision: 1236002

URL: http://svn.apache.org/viewvc?rev=1236002&view=rev
Log:
Fix Javadoc typo

Modified:
    tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/ServiceLifecycle2.java

Modified: tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/ServiceLifecycle2.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/ServiceLifecycle2.java?rev=1236002&r1=1236001&r2=1236002&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/ServiceLifecycle2.java (original)
+++ tapestry/tapestry5/trunk/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/ServiceLifecycle2.java Thu Jan 26 00:51:05 2012
@@ -1,4 +1,4 @@
-// Copyright 2009 The Apache Software Foundation
+// Copyright 2009, 2012 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.
@@ -17,15 +17,15 @@ package org.apache.tapestry5.ioc;
 /**
  * Extension to {@link org.apache.tapestry5.ioc.ServiceLifecycle} that adds an additional method.
  */
-public interface ServiceLifecycle2   extends ServiceLifecycle
+public interface ServiceLifecycle2 extends ServiceLifecycle
 {
     /**
-     * If true, then lifecycle requires a proxy, meaning it is only useable with services that properly define a service
+     * If true, then lifecycle requires a proxy, meaning it is only usable with services that properly define a service
      * interface. The default (singleton) scope does not require a proxy, but most other service scopes do. The default
      * (when wrapping a {@link org.apache.tapestry5.ioc.ServiceLifecycle} as a {@link
      * org.apache.tapestry5.ioc.ServiceLifecycle2} is to return true.
      *
-     * @return true if proxying is necesssary, false otherwise
+     * @return true if proxying is necessary, false otherwise
      */
     boolean requiresProxy();
 }