From e3331751098fab7463cee8782ca72dcba92a8f09 Mon Sep 17 00:00:00 2001 From: Jean Guyomarc'h Date: Fri, 17 Jun 2016 08:18:51 +0200 Subject: [PATCH] eina: fix typos in eina_rectangle doc --- src/lib/eina/eina_rectangle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/eina/eina_rectangle.h b/src/lib/eina/eina_rectangle.h index 55d370ff25..2b600c6f4f 100644 --- a/src/lib/eina/eina_rectangle.h +++ b/src/lib/eina/eina_rectangle.h @@ -49,8 +49,8 @@ */ typedef struct _Eina_Rectangle { - int x; /**< top-left x co-ordinate of rectangle */ - int y; /**< top-left y co-ordinate of rectangle */ + int x; /**< top-left x coordinate of rectangle */ + int y; /**< top-left y coordinate of rectangle */ int w; /**< width of rectangle */ int h; /**< height of rectangle */ } Eina_Rectangle;