From 9e03d9231696160ef7d4d98cf6c1d2f2214c7172 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Tue, 6 Oct 2009 01:04:50 +0100 Subject: [PATCH] [path] MOVE_TO and LINE_TO only use a pair of coordinates The documentation of ClutterPathNode had a small typo and stated that they use 2 pairs of coordinates. --- clutter/clutter-path.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clutter/clutter-path.h b/clutter/clutter-path.h index 14cef40..ab04fac 100644 --- a/clutter/clutter-path.h +++ b/clutter/clutter-path.h @@ -130,8 +130,8 @@ struct _ClutterPathClass * Represents a single node of a #ClutterPath. * * Some of the coordinates in @points may be unused for some node - * types. %CLUTTER_PATH_MOVE_TO and %CLUTTER_PATH_LINE_TO use only two - * pairs of coordinates, %CLUTTER_PATH_CURVE_TO uses all three and + * types. %CLUTTER_PATH_MOVE_TO and %CLUTTER_PATH_LINE_TO use only one + * pair of coordinates, %CLUTTER_PATH_CURVE_TO uses all three and * %CLUTTER_PATH_CLOSE uses none. * * Since: 1.0 -- 2.7.4