diff options
author | Daniel Boles <dboles.src@gmail.com> | 2023-06-15 17:34:54 +0100 |
---|---|---|
committer | Daniel Boles <dboles.src@gmail.com> | 2023-06-15 17:34:54 +0100 |
commit | a2e23a8cdc00ba375965b7eb98e8dd6513b812f5 (patch) | |
tree | 68d4bf8e8af396ce47487af19e2211563028e1c1 | |
parent | 75a7a04edffe5caf501d18428e4b6a5ceff90a91 (diff) |
context: Fix typos of "teh" to "the" + missing "a"
-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, |