summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-07-18 12:14:57 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-07-18 12:35:33 -0700
commit53fa425a90b058498e5c7240bc73c5de1f549f82 (patch)
tree1589ef0170a50975a0b6b06654d08478f34cfadd
parentb78bb45103f03d1f0b3fb7716ef856ebf98b511d (diff)
Fix spelling/wording issues
Found by using: codespell --builtin clear,rare,usage,informal,code,names Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--rendertest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rendertest.c b/rendertest.c
index 9758574..3a89898 100644
--- a/rendertest.c
+++ b/rendertest.c
@@ -256,7 +256,7 @@ int draw_window(xcb_connection_t *conn, xcb_render_query_pict_formats_reply_t *r
alpha_color.blue = 0x0000;
alpha_color.alpha = 0xffff;
- /* Create the trapeziod dimensions */
+ /* Create the trapezoid dimensions */
traps[0].top = make_fixed(300, 32000);
traps[0].bottom = make_fixed(416, 0);
traps[0].left.p1.y = make_fixed(250, 0);
@@ -551,7 +551,7 @@ int main(int argc, char *argv[])
draw_window(c, formats_reply);
#endif
- /* It's very important to free the replys. We don't want memory leaks. */
+ /* It's very important to free the replies. We don't want memory leaks. */
free(version_reply);
free(formats_reply);