summaryrefslogtreecommitdiff
path: root/src/cairo-rectangle.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2008-01-28 20:49:44 -0500
committerBehdad Esfahbod <behdad@behdad.org>2008-01-28 20:49:44 -0500
commit0d898f2badf41d3b0ae5ee88943c44cf49690f5d (patch)
tree88c9e1a4fd355af9fe074ca5206ecafe1c642c90 /src/cairo-rectangle.c
parent9ecde82d35ead4975ce110bb2012264e3ca9d2e1 (diff)
[doc] Make sure all type names in docs are prefixed by #
Diffstat (limited to 'src/cairo-rectangle.c')
-rw-r--r--src/cairo-rectangle.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cairo-rectangle.c b/src/cairo-rectangle.c
index bda82246..5c686838 100644
--- a/src/cairo-rectangle.c
+++ b/src/cairo-rectangle.c
@@ -39,15 +39,15 @@
#include "cairoint.h"
/* XXX We currently have a confusing mix of boxes and rectangles as
- * exemplified by this function. A cairo_box_t is a rectangular area
+ * exemplified by this function. A #cairo_box_t is a rectangular area
* represented by the coordinates of the upper left and lower right
- * corners, expressed in fixed point numbers. A cairo_rectangle_int_t is
+ * corners, expressed in fixed point numbers. A #cairo_rectangle_int_t is
* also a rectangular area, but represented by the upper left corner
* and the width and the height, as integer numbers.
*
- * This function converts a cairo_box_t to a cairo_rectangle_int_t by
+ * This function converts a #cairo_box_t to a #cairo_rectangle_int_t by
* increasing the area to the nearest integer coordinates. We should
- * standardize on cairo_rectangle_fixed_t and cairo_rectangle_int_t, and
+ * standardize on #cairo_rectangle_fixed_t and #cairo_rectangle_int_t, and
* this function could be renamed to the more reasonable
* _cairo_rectangle_fixed_round.
*/