summaryrefslogtreecommitdiff
path: root/src/cairo-matrix.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-matrix.c
parent9ecde82d35ead4975ce110bb2012264e3ca9d2e1 (diff)
downloadcairo-0d898f2badf41d3b0ae5ee88943c44cf49690f5d.tar.gz
[doc] Make sure all type names in docs are prefixed by #
Diffstat (limited to 'src/cairo-matrix.c')
-rw-r--r--src/cairo-matrix.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cairo-matrix.c b/src/cairo-matrix.c
index c3578a298..ebf448e00 100644
--- a/src/cairo-matrix.c
+++ b/src/cairo-matrix.c
@@ -68,7 +68,7 @@ slim_hidden_def(cairo_matrix_init_identity);
/**
* cairo_matrix_init:
- * @matrix: a cairo_matrix_t
+ * @matrix: a #cairo_matrix_t
* @xx: xx component of the affine transformation
* @yx: yx component of the affine transformation
* @xy: xy component of the affine transformation
@@ -137,7 +137,7 @@ _cairo_matrix_get_affine (const cairo_matrix_t *matrix,
/**
* cairo_matrix_init_translate:
- * @matrix: a cairo_matrix_t
+ * @matrix: a #cairo_matrix_t
* @tx: amount to translate in the X direction
* @ty: amount to translate in the Y direction
*
@@ -157,7 +157,7 @@ slim_hidden_def(cairo_matrix_init_translate);
/**
* cairo_matrix_translate:
- * @matrix: a cairo_matrix_t
+ * @matrix: a #cairo_matrix_t
* @tx: amount to translate in the X direction
* @ty: amount to translate in the Y direction
*
@@ -179,7 +179,7 @@ slim_hidden_def (cairo_matrix_translate);
/**
* cairo_matrix_init_scale:
- * @matrix: a cairo_matrix_t
+ * @matrix: a #cairo_matrix_t
* @sx: scale factor in the X direction
* @sy: scale factor in the Y direction
*
@@ -220,7 +220,7 @@ slim_hidden_def(cairo_matrix_scale);
/**
* cairo_matrix_init_rotate:
- * @matrix: a cairo_matrix_t
+ * @matrix: a #cairo_matrix_t
* @radians: angle of rotation, in radians. The direction of rotation
* is defined such that positive angles rotate in the direction from
* the positive X axis toward the positive Y axis. With the default