[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH]Typo fix

From: Kamesh Jayachandran <kamesh_at_collab.net>
Date: 2007-01-17 13:38:47 CET

Hi All,
Find the attached patch and log.

With regards
Kamesh Jayachandran

[[[
Typo fix.

* subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/Revision.java
  (global): Bump up the copyright year.
  (Revision.Revision(int kind)): 'legel' -> 'legal'
  (Revision.Revision(int kind, boolean marker)): 'legel' -> 'legal'.
   'differtiate' -> 'differentiate'.
   Doc string aligned to < 80 chars per line.

Patch by: kameshj
]]]

Index: subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/Revision.java
===================================================================
--- subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/Revision.java (revision 23065)
+++ subversion/bindings/java/javahl/src/org/tigris/subversion/javahl/Revision.java (working copy)
@@ -1,7 +1,7 @@
 /**
  * @copyright
  * ====================================================================
- * Copyright (c) 2003-2004 CollabNet. All rights reserved.
+ * Copyright (c) 2003-2007 CollabNet. All rights reserved.
  *
  * This software is licensed as described in the file COPYING, which
  * you should have received as part of this distribution. The terms
@@ -40,20 +40,20 @@
     {
         if(kind < RevisionKind.unspecified || kind > RevisionKind.head)
             throw new IllegalArgumentException(
- kind+" is not a legel revision kind");
+ kind+" is not a legal revision kind");
         revKind = kind;
     }
 
     /**
      * Internally create a new revision
- * @param kind kind of revision
- * @param marker marker to differtiate from the public deprecated version
+ * @param kind kind of revision
+ * @param marker marker to differentiate from the public deprecated version
      */
     protected Revision(int kind, boolean marker)
     {
         if(kind < RevisionKind.unspecified || kind > RevisionKind.head)
             throw new IllegalArgumentException(
- kind+" is not a legel revision kind");
+ kind+" is not a legal revision kind");
         revKind = kind;
     }
 

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Jan 17 13:38:17 2007

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.