summaryrefslogtreecommitdiff
path: root/CODING_STYLE.md
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-05-20 00:43:29 +0000
committerMatthias Clasen <mclasen@redhat.com>2021-05-20 00:43:29 +0000
commite2d1a595b84ca31d89ae20734155e6d1de635502 (patch)
tree51fdf2d97b85ef4a3e7c870389b92130c9b1a491 /CODING_STYLE.md
parent3940a1714e84b076d04d4638c88df3dba7d8014e (diff)
parent7f04ed9259fd91cdb3dc61c5aa43d196ec6a965f (diff)
downloadpango-e2d1a595b84ca31d89ae20734155e6d1de635502.tar.gz
Merge branch 'docs-cleanup' into 'master'
introspection: Stop using allow-none See merge request GNOME/pango!333
Diffstat (limited to 'CODING_STYLE.md')
-rw-r--r--CODING_STYLE.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/CODING_STYLE.md b/CODING_STYLE.md
index 25929a78..aa183e5d 100644
--- a/CODING_STYLE.md
+++ b/CODING_STYLE.md
@@ -49,19 +49,19 @@ in the gtk-doc / gnome-doc style. For instance:
/**
* pango_layout_get_line:
- * @layout: a #PangoLayout
+ * @layout: a `PangoLayout`
* @line: the index of a line, which must be between 0 and
- * pango_layout_get_line_count(layout) - 1, inclusive.
+ * `pango_layout_get_line_count(layout) - 1`, inclusive.
*
- * Retrieves a particular line from a #PangoLayout (or @layout.)
+ * Retrieves a particular line from a `PangoLayout` (or @layout.)
*
- * Return value: the requested #PangoLayoutLine, or %NULL if the
- * index is out of range. This layout line can
- * be ref'ed and retained, but will become invalid
- * if changes are made to the #PangoLayout.
+ * Return value: the requested `PangoLayoutLine`, or %NULL
+ * if the index is out of range. This layout line can
+ * be ref'ed and retained, but will become invalid
+ * if changes are made to the `PangoLayout`.
*
* Since: 1.6
- **/
+ */
PangoLayoutLine *
pango_layout_get_line (PangoLayout *layout,
int line)