Spell correct some comments.

Unreviewed



git-svn-id: http://skia.googlecode.com/svn/trunk@5951 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrDrawState.h b/src/gpu/GrDrawState.h
index 9b20058..69f0aea 100644
--- a/src/gpu/GrDrawState.h
+++ b/src/gpu/GrDrawState.h
@@ -94,7 +94,7 @@
 
     /**
      * Initializes the GrDrawState based on a GrPaint. Note that GrDrawState
-     * encompases more than GrPaint. Aspects of GrDrawState that have no
+     * encompasses more than GrPaint. Aspects of GrDrawState that have no
      * GrPaint equivalents are not modified. GrPaint has fewer stages than
      * GrDrawState. The extra GrDrawState stages are disabled.
      */
@@ -324,7 +324,7 @@
     ////
 
     /**
-     * Sets the blending function coeffecients.
+     * Sets the blending function coefficients.
      *
      * The blend function will be:
      *    D' = sat(S*srcCoef + D*dstCoef)
@@ -333,8 +333,8 @@
      *   color, and D' is the new destination color that will be written. sat()
      *   is the saturation function.
      *
-     * @param srcCoef coeffecient applied to the src color.
-     * @param dstCoef coeffecient applied to the dst color.
+     * @param srcCoef coefficient applied to the src color.
+     * @param dstCoef coefficient applied to the dst color.
      */
     void setBlendFunc(GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff) {
         fSrcBlend = srcCoeff;
@@ -376,7 +376,7 @@
 
     /**
      * Sets the blending function constant referenced by the following blending
-     * coeffecients:
+     * coefficients:
      *      kConstC_GrBlendCoeff
      *      kIConstC_GrBlendCoeff
      *      kConstA_GrBlendCoeff
@@ -660,7 +660,7 @@
 
     ///////////////////////////////////////////////////////////////////////////
     // @name Edge AA
-    // Edge equations can be specified to perform antialiasing. Because the
+    // Edge equations can be specified to perform anti-aliasing. Because the
     // edges are specified as per-vertex data, vertices that are shared by
     // multiple edges must be split.
     //
@@ -753,7 +753,7 @@
     /**
      * Enable render state settings.
      *
-     * @param stateBits bitfield of StateBits specifing the states to enable
+     * @param stateBits bitfield of StateBits specifying the states to enable
      */
     void enableState(uint32_t stateBits) {
         fFlagBits |= stateBits;
@@ -762,7 +762,7 @@
     /**
      * Disable render state settings.
      *
-     * @param stateBits bitfield of StateBits specifing the states to disable
+     * @param stateBits bitfield of StateBits specifying the states to disable
      */
     void disableState(uint32_t stateBits) {
         fFlagBits &= ~(stateBits);
@@ -771,7 +771,7 @@
     /**
      * Enable or disable stateBits based on a boolean.
      *
-     * @param stateBits bitfield of StateBits to enable or disablt
+     * @param stateBits bitfield of StateBits to enable or disable
      * @param enable    if true enable stateBits, otherwise disable
      */
     void setState(uint32_t stateBits, bool enable) {
@@ -915,7 +915,7 @@
 
 private:
 
-    // These fields are roughly sorted by decreasing liklihood of being different in op==
+    // These fields are roughly sorted by decreasing likelihood of being different in op==
     GrColor             fColor;
     GrMatrix            fViewMatrix;
     GrRenderTarget*     fRenderTarget;