summaryrefslogtreecommitdiff
path: root/CODING_STYLE.md
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-05-19 16:06:44 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-05-19 16:34:05 -0400
commit7f04ed9259fd91cdb3dc61c5aa43d196ec6a965f (patch)
tree51fdf2d97b85ef4a3e7c870389b92130c9b1a491 /CODING_STYLE.md
parent75eee838a91bad404d211b002f26e9af3033f0d5 (diff)
downloadpango-7f04ed9259fd91cdb3dc61c5aa43d196ec6a965f.tar.gz
docs: Convert gtk-doc syntax leftoversdocs-cleanup
Remove leftovers like #Type, reduce indentations to avoid markdown block quotes, etc.
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)