Index: /home/ijuma82/workspaces/likecube/compass/src/main/src/org/compass/core/CompassQueryBuilder.java
===================================================================
--- /home/ijuma82/workspaces/likecube/compass/src/main/src/org/compass/core/CompassQueryBuilder.java	(revision 1636)
+++ /home/ijuma82/workspaces/likecube/compass/src/main/src/org/compass/core/CompassQueryBuilder.java	(working copy)
@@ -23,10 +23,10 @@
  * {@link CompassQuery} programmatically. Simple
  * queries, like {@link #le(String, Object)}, will generate a
  * {@link CompassQuery}. More complex ones, will
- * return their repective builder to continue and bulid them (like
+ * return their respective builder to continue and build them (like
  * {@link #multiPhrase(String)}).
  * <p/>
- * Combinig {@link CompassQuery}s can be done using
+ * Combining {@link CompassQuery}s can be done using
  * the {@link #bool()} operation.
  * <p/>
  * An example of building a query using the query builder:
@@ -144,7 +144,7 @@
         /**
          * Sets the analyzer that will be used to analyze the query string. Can
          * be <code>null</code>. It is used when parsing a query string and
-         * has no efects when using a bulit in query (using the
+         * has no efects when using a built in query (using the
          * {@link CompassQuery}).
          */
         CompassQueryStringBuilder setAnalyzer(String analyzer) throws CompassException;
@@ -165,7 +165,7 @@
         /**
          * Sets the default search property for non prefixed terms in the query
          * string. Can be <code>null</code>. It is used when parsing a query
-         * string and has no efects when using a bulit in query (using the
+         * string and has no efects when using a built in query (using the
          * {@link CompassQuery}).
          */
         CompassQueryStringBuilder setDefaultSearchProperty(String defaultSearchProperty);
@@ -192,14 +192,14 @@
         /**
          * Sets the analyzer that will be used to analyze the query string. Can
          * be <code>null</code>. It is used when parsing a query string and
-         * has no efects when using a bulit in query (using the
+         * has no efects when using a built in query (using the
          * {@link CompassQuery}).
          */
         CompassMultiPropertyQueryStringBuilder setAnalyzer(String analyzer);
 
         /**
          * Sets the analyzer that will be used to analyzer the query string. The
-         * analyzer will be build based on analyzer settings for the mapping definitions
+         * analyzer will be built based on analyzer settings for the mapping definitions
          * the define the alias. It means that if a certain property is associated with
          * a specific analyzer, a per property analyzer will be built.
          */
@@ -336,10 +336,10 @@
     CompassQuery alias(String aliasValue);
 
     /**
-     * Creates a query where the resource proeprty must have the given value.
+     * Creates a query where the resource property must have the given value.
      * Note, that the value itself will not be analyzed, but the text that was
      * indexed might have been (if <code>indexed</code>). The search is case
-     * sensative.
+     * sensitive.
      * <p/>
      * The name can either be the actual resource property or meta-data value,
      * or the path to the given resource property (alias.rProperty), or the
@@ -360,7 +360,7 @@
     CompassQuery matchAll();
 
     /**
-     * Creates a query where the resource proeprty is between the given values.
+     * Creates a query where the resource property is between the given values.
      * <p/>
      * The name can either be the actual resource property or meta-data value,
      * or the path to the given resource property (alias.rProperty), or the
@@ -378,7 +378,7 @@
     CompassQuery between(String name, Object low, Object high, boolean inclusive, boolean constantScore);
 
     /**
-     * Creates a query where the resource proeprty is between the given values.
+     * Creates a query where the resource property is between the given values.
      * <p/>
      * The name can either be the actual resource property or meta-data value,
      * or the path to the given resource property (alias.rProperty), or the
@@ -394,7 +394,7 @@
     CompassQuery between(String name, Object low, Object high, boolean inclusive);
 
     /**
-     * Creates a query where the resource proeprty is less than (<) the given
+     * Creates a query where the resource property is less than (<) the given
      * value.
      * <p/>
      * The name can either be the actual resource property or meta-data value,
@@ -409,7 +409,7 @@
     CompassQuery lt(String name, Object value);
 
     /**
-     * Creates a query where the resource proeprty is less or equal (<=) to the
+     * Creates a query where the resource property is less or equal (<=) to the
      * given value.
      * <p/>
      * The name can either be the actual resource property or meta-data value,
@@ -424,7 +424,7 @@
     CompassQuery le(String name, Object value);
 
     /**
-     * Creates a query where the resource proeprty is greater than (>) to the
+     * Creates a query where the resource property is greater than (>) the
      * given value.
      * <p/>
      * The name can either be the actual resource property or meta-data value,
@@ -439,7 +439,7 @@
     CompassQuery gt(String name, Object value);
 
     /**
-     * Creates a query where the resource proeprty is greater or equal (>=) to
+     * Creates a query where the resource property is greater or equal (>=) to
      * the given value.
      * <p/>
      * The name can either be the actual resource property or meta-data value,
@@ -536,7 +536,7 @@
     CompassQuery fuzzy(String name, String value, float minimumSimilarity, int prefixLength);
 
     /**
-     * Creates a span query where the resource proeprty must match the given
+     * Creates a span query where the resource property must match the given
      * value.
      * <p/>
      * The name can either be the actual resource property or meta-data value,

