diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-05-19 16:06:44 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-05-19 16:34:05 -0400 |
commit | 7f04ed9259fd91cdb3dc61c5aa43d196ec6a965f (patch) | |
tree | 51fdf2d97b85ef4a3e7c870389b92130c9b1a491 /pango/pango-coverage.h | |
parent | 75eee838a91bad404d211b002f26e9af3033f0d5 (diff) | |
download | pango-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 'pango/pango-coverage.h')
-rw-r--r-- | pango/pango-coverage.h | 38 |
1 files changed, 21 insertions, 17 deletions
diff --git a/pango/pango-coverage.h b/pango/pango-coverage.h index 67fc6306..dbee7e9f 100644 --- a/pango/pango-coverage.h +++ b/pango/pango-coverage.h @@ -32,30 +32,34 @@ G_BEGIN_DECLS /** * PangoCoverage: * - * A #PangoCoverage structure is a map from Unicode characters - * to #PangoCoverageLevel values. + * A `PangoCoverage` structure is a map from Unicode characters + * to [enum@Pango.CoverageLevel] values. * - * It is often necessary in Pango to determine if a particular font can - * represent a particular character, and also how well it can represent - * that character. The #PangoCoverage is a data structure that is used to - * represent that information. It is an opaque structure with no public fields. + * It is often necessary in Pango to determine if a particular + * font can represent a particular character, and also how well + * it can represent that character. The `PangoCoverage` is a data + * structure that is used to represent that information. It is an + * opaque structure with no public fields. */ typedef struct _PangoCoverage PangoCoverage; /** * PangoCoverageLevel: - * @PANGO_COVERAGE_NONE: The character is not representable with the font. - * @PANGO_COVERAGE_FALLBACK: The character is represented in a way that may be - * comprehensible but is not the correct graphical form. - * For instance, a Hangul character represented as a - * a sequence of Jamos, or a Latin transliteration of a Cyrillic word. - * @PANGO_COVERAGE_APPROXIMATE: The character is represented as basically the correct - * graphical form, but with a stylistic variant inappropriate for - * the current script. - * @PANGO_COVERAGE_EXACT: The character is represented as the correct graphical form. + * @PANGO_COVERAGE_NONE: The character is not representable with + * the font. + * @PANGO_COVERAGE_FALLBACK: The character is represented in a + * way that may be comprehensible but is not the correct + * graphical form. For instance, a Hangul character represented + * as a a sequence of Jamos, or a Latin transliteration of a + * Cyrillic word. + * @PANGO_COVERAGE_APPROXIMATE: The character is represented as + * basically the correct graphical form, but with a stylistic + * variant inappropriate for the current script. + * @PANGO_COVERAGE_EXACT: The character is represented as the + * correct graphical form. * - * `PangoCoverageLevel` is used to indicate how well a font can represent - * a particular Unicode character for a particular script. + * `PangoCoverageLevel` is used to indicate how well a font can + * represent a particular Unicode character for a particular script. * * Since 1.44, only %PANGO_COVERAGE_NONE and %PANGO_COVERAGE_EXACT * will be returned. |