You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2008/12/27 01:27:48 UTC

svn commit: r729572 - /directory/apacheds/trunk/protocol-shared/src/main/java/org/apache/directory/server/protocol/shared/DirectoryBackedService.java

Author: elecharny
Date: Fri Dec 26 16:27:47 2008
New Revision: 729572

URL: http://svn.apache.org/viewvc?rev=729572&view=rev
Log:
Fixed some typoes in the Javadoc

Modified:
    directory/apacheds/trunk/protocol-shared/src/main/java/org/apache/directory/server/protocol/shared/DirectoryBackedService.java

Modified: directory/apacheds/trunk/protocol-shared/src/main/java/org/apache/directory/server/protocol/shared/DirectoryBackedService.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/protocol-shared/src/main/java/org/apache/directory/server/protocol/shared/DirectoryBackedService.java?rev=729572&r1=729571&r2=729572&view=diff
==============================================================================
--- directory/apacheds/trunk/protocol-shared/src/main/java/org/apache/directory/server/protocol/shared/DirectoryBackedService.java (original)
+++ directory/apacheds/trunk/protocol-shared/src/main/java/org/apache/directory/server/protocol/shared/DirectoryBackedService.java Fri Dec 26 16:27:47 2008
@@ -38,7 +38,7 @@
      */
     private String searchBaseDn = ServerDNConstants.USER_EXAMPLE_COM_DN;
     
-    /** determines if the search base is pointer to a catelog or a single entry point */
+    /** determines if the search base is pointer to a catalog or a single entry point */
     private boolean catelogBased;
 
 
@@ -63,10 +63,10 @@
 
 
     /**
-     * Gets true if this service uses a catelog for searching different
+     * Gets true if this service uses a catalog for searching different
      * regions of the DIT for its data.
      *
-     * @return true if the search base dn is for a catelog, false otherwise
+     * @return true if the search base dn is for a catalog, false otherwise
      */
     public boolean isCatelogBased()
     {
@@ -75,10 +75,10 @@
 
 
     /**
-     * Set true if this service uses a catelog for searching different
+     * Set true if this service uses a catalog for searching different
      * regions of the DIT for its data.
      *
-     * @param  catelogBased if the search base dn is for a catelog, false otherwise
+     * @param  catelogBased if the search base dn is for a catalog, false otherwise
      */
     public void setCatelogBased( boolean catelogBased )
     {