summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Boles <dboles.src@gmail.com>2023-06-17 12:23:04 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2023-06-17 12:23:04 +0200
commit481ba57bb27c54e5dec628495810b458c605cfa4 (patch)
tree441a0d81a3808c0100052b7867e1d9d6367b3f1f
parent4907d7cf4f6ca400525c65ee512d71d9b0616ed9 (diff)
enums: Fix typos of "teh" to "the" + missing "a"
See !26
-rw-r--r--cairomm/enums.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cairomm/enums.h b/cairomm/enums.h
index 0408efd..951e04b 100644
--- a/cairomm/enums.h
+++ b/cairomm/enums.h
@@ -201,12 +201,12 @@ typedef enum
LINE_CAP_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
*/
LINE_CAP_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
*/
LINE_CAP_SQUARE = CAIRO_LINE_CAP_SQUARE
} LineCap;
@@ -224,7 +224,7 @@ typedef enum
LINE_JOIN_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
*/
LINE_JOIN_ROUND = CAIRO_LINE_JOIN_ROUND,