Fixed comments
diff --git a/include/FTFont.h b/include/FTFont.h
index 5740225..3577a76 100755
--- a/include/FTFont.h
+++ b/include/FTFont.h
@@ -127,11 +127,7 @@ class FTFont
* Constructs the internal glyph cache.
*
* This a list of glyphs processed for openGL rendering NOT
- * Freetype glyphs. This function checks for errors in creating
- * Freetype glyph objects but NOT FTGL glyph objects.
- *
- * @return <code>true</code> If all glyphs were successfully created.
- * Clients should check error code on failure.
+ * freetype glyphs
*/
virtual bool MakeGlyphList() = 0;
diff --git a/include/FTSize.h b/include/FTSize.h
index 2ea8b8f..52dc700 100755
--- a/include/FTSize.h
+++ b/include/FTSize.h
@@ -34,9 +34,9 @@ class FTSize
* This doesn't guarantee that the size was set correctly. Clients
* should check errors.
*
- * @params point_size the face size in points (1/72 inch)
- * @params x_resolution the horizontal resolution of the target device.
- * @params y_resolution the vertical resolution of the target device.
+ * @param point_size the face size in points (1/72 inch)
+ * @param x_resolution the horizontal resolution of the target device.
+ * @param y_resolution the vertical resolution of the target device.
* @return <code>true</code> if the size has been set. Clients should check Error() for more information if this function returns false()
*/
bool CharSize( FT_Face* face, unsigned int point_size, unsigned int x_resolution, unsigned int y_resolution );