Index: main/src/org/compass/gps/impl/DualCompassGps.java =================================================================== --- main/src/org/compass/gps/impl/DualCompassGps.java (revision 1209) +++ main/src/org/compass/gps/impl/DualCompassGps.java (working copy) @@ -138,7 +138,7 @@ } /** - * Sets the index compass instnace, used for the indexing operations. + * Sets the index compass instance, used for the indexing operations. */ public void setIndexCompass(Compass indexCompass) { this.indexCompass = indexCompass; Index: main/src/org/compass/spring/LocalCompassBeanPostProcessor.java =================================================================== --- main/src/org/compass/spring/LocalCompassBeanPostProcessor.java (revision 1209) +++ main/src/org/compass/spring/LocalCompassBeanPostProcessor.java (working copy) @@ -15,7 +15,7 @@ * Process the {@link org.compass.core.config.CompassConfiguration} allowing * to add additional configuration settings / mappings before the * {@link org.compass.spring.LocalCompassBean} creates the {@link org.compass.core.Compass} - * instnace. + * instance. * * @param config The Compass configuration that will be used to creat the Compass instance * @throws ConfigurationException Index: main/src/org/compass/spring/web/mvc/AbstractCompassCommandController.java =================================================================== --- main/src/org/compass/spring/web/mvc/AbstractCompassCommandController.java (revision 1209) +++ main/src/org/compass/spring/web/mvc/AbstractCompassCommandController.java (working copy) @@ -38,7 +38,7 @@ public void afterPropertiesSet() throws Exception { if (compass == null) { - throw new IllegalArgumentException("Must set compass proerty"); + throw new IllegalArgumentException("Must set compass property"); } this.compassTemplate = new CompassTemplate(compass); } @@ -46,7 +46,7 @@ /** * Returns Compass instance. * - * @return The compass isntance. + * @return The compass instance. */ public Compass getCompass() { return compass; @@ -53,7 +53,7 @@ } /** - * Sets the Compass instnace. + * Sets the Compass instance. * * @param compass */ Index: main/src/org/compass/spring/web/mvc/CompassIndexController.java =================================================================== --- main/src/org/compass/spring/web/mvc/CompassIndexController.java (revision 1209) +++ main/src/org/compass/spring/web/mvc/CompassIndexController.java (working copy) @@ -61,7 +61,7 @@ throw new IllegalArgumentException("Must set the indexView property"); } if (indexResultsView == null) { - throw new IllegalArgumentException("Must set hte indexResultsView property"); + throw new IllegalArgumentException("Must set the indexResultsView property"); } } Index: main/src/org/compass/spring/web/mvc/CompassSearchController.java =================================================================== --- main/src/org/compass/spring/web/mvc/CompassSearchController.java (revision 1209) +++ main/src/org/compass/spring/web/mvc/CompassSearchController.java (working copy) @@ -74,7 +74,7 @@ throw new IllegalArgumentException("Must set the searchView property"); } if (searchResultsView == null) { - throw new IllegalArgumentException("Must set hte serachResultsView property"); + throw new IllegalArgumentException("Must set the serachResultsView property"); } } @@ -175,7 +175,7 @@ } /** - * An option to perform any type of processing before the hits are detached. + * An option to perform any type of processing after the hits are detached. */ protected void doProcessAfterDetach(CompassSearchCommand searchCommand, CompassSession session, CompassDetachedHits hits) {