From c7d8ec72e6d14236d20b068a404d166496872a54 Mon Sep 17 00:00:00 2001 From: Nis Martensen Date: Sun, 12 Feb 2012 10:36:17 +0100 Subject: [PATCH] doc: fix typo The pattern creation function call in the example code has one _mesh too much. This hopefully fixes the mesh mismatch mess :) Signed-off-by: Nis Martensen Signed-off-by: Uli Schlachter --- src/cairo-pattern.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cairo-pattern.c b/src/cairo-pattern.c index 08942f9c2..f114ca8e5 100644 --- a/src/cairo-pattern.c +++ b/src/cairo-pattern.c @@ -939,7 +939,7 @@ static const int mesh_control_point_j[4] = { 1, 2, 2, 1 }; * cairo_mesh_pattern_begin_patch()/cairo_mesh_pattern_end_patch(). * * - * cairo_pattern_t *pattern = cairo_mesh_pattern_create_mesh (); + * cairo_pattern_t *pattern = cairo_pattern_create_mesh (); * * /* Add a Coons patch */ * cairo_mesh_pattern_begin_patch (pattern);