summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorUnknown <kunda@scribus.net>2017-11-09 09:43:02 -0500
committerBryce Harrington <bryce@osg.samsung.com>2018-04-02 17:46:58 -0700
commit12cb59be7da83cf019933a163cef8d8b2601b7f4 (patch)
treebdc20384928124d46c56f0faaf72b6b5a991fe83 /test
parent33a348d69809637ba7c48cc31a9f236a5b246ae0 (diff)
Cairo trivial typos
Found using `codespell -q 3 -I cairo-whitelist.txt` whereby whitelist contained: ``` amin iff lod writen ``` Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
Diffstat (limited to 'test')
-rw-r--r--test/line-width-zero.c2
-rw-r--r--test/mime-data.c2
-rw-r--r--test/skew-extreme.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/line-width-zero.c b/test/line-width-zero.c
index c7ac8a0fd..421b9d2c5 100644
--- a/test/line-width-zero.c
+++ b/test/line-width-zero.c
@@ -28,7 +28,7 @@
/* This is a test case for the following bug:
*
- * Crash in cairo_stroke_extents whe line width is 0 and line cap is ROUND
+ * Crash in cairo_stroke_extents when line width is 0 and line cap is ROUND
* (_cairo_pen_find_active_cw_vertex_index)
* https://bugs.freedesktop.org/show_bug.cgi?id=10231
*/
diff --git a/test/mime-data.c b/test/mime-data.c
index e6d1405bf..cea9d7caf 100644
--- a/test/mime-data.c
+++ b/test/mime-data.c
@@ -238,7 +238,7 @@ paint_ccitt_file (cairo_t *cr, int x, int y)
return cairo_test_status_from_status (ctx, status);
}
- /* Set the CCITT image paramaters */
+ /* Set the CCITT image parameters */
status = cairo_surface_set_mime_data (image, CAIRO_MIME_TYPE_CCITT_FAX_PARAMS,
(unsigned char *)ccitt_image_params,
strlen (ccitt_image_params),
diff --git a/test/skew-extreme.c b/test/skew-extreme.c
index 69299a86c..e0ee1c4c2 100644
--- a/test/skew-extreme.c
+++ b/test/skew-extreme.c
@@ -43,7 +43,7 @@
* d\_\c
*
* and the bug is that _cairo_traps_tessellate_convex_quad is
- * comparing b.x as less then d.x and therfore determining that the bc
+ * comparing b.x as less then d.x and therefore determining that the bc
* edge is left of the ad edge. The fix is simply to compare c.x to
* d.x instead of b.x to d.x .
*/