This fixes a typo in LinkedHashSet javadoc.

Tom

ChangeLog:
2007-08-15  Tom Tromey  <[EMAIL PROTECTED]>

        * java/util/LinkedHashSet.java (LinkedHashSet): Fix typo.

Index: java/util/LinkedHashSet.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/util/LinkedHashSet.java,v
retrieving revision 1.6
diff -u -r1.6 LinkedHashSet.java
--- java/util/LinkedHashSet.java        10 Dec 2006 20:25:46 -0000      1.6
+++ java/util/LinkedHashSet.java        15 Aug 2007 16:26:39 -0000
@@ -1,6 +1,6 @@
 /* LinkedHashSet.java -- a set backed by a LinkedHashMap, for linked
    list traversal.
-   Copyright (C) 2001, 2004, 2005 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2004, 2005, 2007 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -98,7 +98,7 @@
 
   /**
    * Construct a new, empty HashSet whose backing HashMap has the default
-   * capacity (11) and loadFacor (0.75).
+   * capacity (11) and loadFactor (0.75).
    */
   public LinkedHashSet()
   {

Reply via email to