diff --git a/docs/subset.html b/docs/subset.html
index 0c5a532e96c..1c902636f8a 100644
--- a/docs/subset.html
+++ b/docs/subset.html
@@ -12,7 +12,7 @@
Tungsten Graphics, Inc.
-January 23, 2003
+February 3, 2003
@@ -589,7 +589,7 @@ front-facing triangles and quadrilaterals, respectively.
The command
void glFrontFace(GLenummode)
+ style="font-style: italic;"> mode)
specifies whether clockwise or counter-clockwise winding indicates a
@@ -635,15 +635,18 @@ The command
controls whether polygons are filled, outlined or drawn with a point at
each vertex. The face
parameter must be GL_FRONT_AND_BACK. The values GL_FRONT and
-GL_BACK are not permitted by the subset. If mode is GL_FILL then the polygon
-will be filled (the default). If mode
-is GL_LINE then the polygon will be rendered as if it were specified by glBegin(GL_LINE_LOOP). If mode is GL_POINT then the polygon
-will be rendered as if it were specified with glBegin(GL_POINTS). Any other
-values for face or
+
+If mode is GL_FILL then
+triangles, quadrilaterals and triangles will be filled (the default).
+ If mode is GL_LINE then
+triangles, quadrilaterals and polygons will be outlined with line
+segments instead of being filled.
+ If mode is GL_POINT then
+triangles, quadrilaterals and polygons will be rendered with a point at
+each vertex instead of being filled.
+
+Any other values for face or mode will raise the error
GL_INVALID_ENUM.
@@ -684,9 +687,9 @@ are linearly interpolated to produce the fragment colors.
4.5 Bitmap Rasterization
A bitmap is a monochromatic, binary image in which each image element
-(or pixel) is represented by one bit. Fragments are only
-generated for the bits (pixels) which are set. Bitmaps are
-commonly used to draw text (glyphs) and markers.
+(or pixel) is represented by one bit. Fragments are only generated
+for the bits (pixels) which are set. Bitmaps are commonly used
+to draw text (glyphs) and markers.
A bitmap is drawn with the command