summaryrefslogtreecommitdiff
path: root/pango/pango-matrix.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-02-19 08:18:43 -0500
committerMatthias Clasen <mclasen@redhat.com>2021-03-11 13:17:36 -0500
commitb26f56fd99d45b8973390fb3c48c1f903218472b (patch)
treea33ea5cc51fbd9d1b21dbda45e21945effe3aba0 /pango/pango-matrix.h
parente8302251e6ad11631951a5940d772cb14574b506 (diff)
downloadpango-b26f56fd99d45b8973390fb3c48c1f903218472b.tar.gz
docs: Tweak matrix docs
Add summaries, convert markup, etc.
Diffstat (limited to 'pango/pango-matrix.h')
-rw-r--r--pango/pango-matrix.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/pango/pango-matrix.h b/pango/pango-matrix.h
index 9dfadee9..c3ff5414 100644
--- a/pango/pango-matrix.h
+++ b/pango/pango-matrix.h
@@ -38,9 +38,10 @@ typedef struct _PangoMatrix PangoMatrix;
* @x0: x translation
* @y0: y translation
*
- * A structure specifying a transformation between user-space
- * coordinates and device coordinates. The transformation
- * is given by
+ * A `PangoMatrix` specifies a transformation between user-space
+ * and device coordinates.
+ *
+ * The transformation is given by
*
* ```
* x_device = x_user * matrix->xx + y_user * matrix->xy + matrix->x0;
@@ -48,7 +49,7 @@ typedef struct _PangoMatrix PangoMatrix;
* ```
*
* Since: 1.6
- **/
+ */
struct _PangoMatrix
{
double xx;