diff options
-rw-r--r-- | cairomm/context.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cairomm/context.h b/cairomm/context.h index 20f1e7b..388843f 100644 --- a/cairomm/context.h +++ b/cairomm/context.h @@ -191,12 +191,12 @@ public: BUTT = CAIRO_LINE_CAP_BUTT, /** - * Use a round ending, the center of teh circle is teh end point + * Use a round ending, the center of the circle is the end point */ ROUND = CAIRO_LINE_CAP_ROUND, /** - * Use squared ending, the center of teh square is the end point + * Use a squared ending, the center of the square is the end point */ SQUARE = CAIRO_LINE_CAP_SQUARE }; @@ -214,7 +214,7 @@ public: MITER = CAIRO_LINE_JOIN_MITER, /** - * Use a rounded join, the center of teh circle is the joint point + * Use a rounded join, the center of the circle is the joint point */ ROUND = CAIRO_LINE_JOIN_ROUND, |