feedback

feedback from include review

Docs-Preview: https://skia.org/?cl=49260
Bug: skia: 6898
Change-Id: Ic60980dfe53d14fd8c6973ef2f4dabb6b650cdd8
Reviewed-on: https://skia-review.googlesource.com/49260
Commit-Queue: Cary Clark <caryclark@skia.org>
Reviewed-by: Cary Clark <caryclark@skia.org>
diff --git a/docs/SkPath_Reference.bmh b/docs/SkPath_Reference.bmh
index ca17a9c..c34a212 100644
--- a/docs/SkPath_Reference.bmh
+++ b/docs/SkPath_Reference.bmh
@@ -2626,7 +2626,7 @@
 #Formula
 1 / sqrt(2)
 ##
- .
+.
 ##
 void draw(SkCanvas* canvas) {
     const char* verbNames[] = { "move", "line", "quad", "conic", "cubic", "close", "done" };
@@ -3812,6 +3812,7 @@
 #Formula
 (1 + 2 * (1 << pow2)) * sizeof(SkPoint)
 ##
+
 ConvertConicToQuads returns Quad count used the approximation, which may be smaller
 than the number requested.
  
@@ -4203,10 +4204,10 @@
 #Formula
 (x + radius, y)
 ##
-and continues clockwise if dir is kCW_Direction, counterclockwise if dir is
+, continuing clockwise if dir is kCW_Direction, and counterclockwise if dir is
 kCCW_Direction.
 
-addCircle has no effect if radius is zero or negative.
+Has no effect if radius is zero or negative.
 
 #Param x       center of Circle ##
 #Param y       center of Circle  ##
@@ -4469,13 +4470,10 @@
 
 #Method void addPoly(const SkPoint pts[], int count, bool close)
 
-Add Contour created from Line array, adding
-#Formula
-count - 1 
-##
-Line segments. Contour added starts at pts[0], then adds a line
-for every additional Point in pts array. If close is true,
-appends kClose_Verb to Path, connecting pts[count - 1] and pts[0].
+Add Contour created from Line array, adding (count - 1) Line segments.
+Contour added starts at pts[0], then adds a line for every additional Point
+in pts array. If close is true,appends kClose_Verb to Path, connecting
+pts[count - 1] and pts[0].
 
 If count is zero, append kMove_Verb to path.
 Has no effect if count is less than one.
@@ -5125,7 +5123,9 @@
 in hexadecimal to preserve their exact bit pattern. The output reconstructs the
 original Path.
 
-Use instead of dump() when submitting #A bug reports against Skia # http://bug.skia.org ##.
+Use instead of dump() when submitting 
+#A bug reports against Skia # http://bug.skia.org ##
+.
 Slight value changes in Point_Array may cause the bug to disappear.
 
 #Example