diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-06-03 17:37:26 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-06-03 17:37:26 +0000 |
commit | 8de41bc064a69ead1e38ca8c8b6483bb34b98d64 (patch) | |
tree | f4102b76ce9872091e3d076f0597e01a5e2cb8bb /pango | |
parent | 76233dd729d795bb125946180c75fd6757241102 (diff) | |
download | pango-8de41bc064a69ead1e38ca8c8b6483bb34b98d64.tar.gz |
Typo fix.
* pango/fonts.c (pango_font_description_better_match): Typo fix.
* pango/pango-color.c (pango_color_parse):
* docs/pango-docs.sgml: Replace homegrown "nbsp", "hash"
and "mdash" entities by standard ISO entities "nbsp", "num" and
"mdash".
Diffstat (limited to 'pango')
-rw-r--r-- | pango/fonts.c | 2 | ||||
-rw-r--r-- | pango/pango-color.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pango/fonts.c b/pango/fonts.c index 5742e072..a75ff116 100644 --- a/pango/fonts.c +++ b/pango/fonts.c @@ -510,7 +510,7 @@ compute_distance (const PangoFontDescription *a, /** * pango_font_description_better_match: - * @desc: a #PangoFontDecription + * @desc: a #PangoFontDescription * @old_match: a #PangoFontDescription, or %NULL * @new_match: a #PangoFontDescription * diff --git a/pango/pango-color.c b/pango/pango-color.c index bd25cea9..b9d8b357 100644 --- a/pango/pango-color.c +++ b/pango/pango-color.c @@ -922,10 +922,10 @@ find_color(const char *name, * Fill in the fields of a color from a string specification. The * string can either one of a large set of standard names. (Taken * from the X11 <filename>rgb.txt</filename> file), or it can be a hex value in the - * form '&hash;rgb' '&hash;rrggbb' '&hash;rrrgggbbb' or '&hash;rrrrggggbbbb' where + * form '#rgb' '#rrggbb' '#rrrgggbbb' or '#rrrrggggbbbb' where * 'r', 'g' and 'b' are hex digits of the red, green, and blue * components of the color, respectively. (White in the four - * forms is '&hash;fff' '&hash;ffffff' '&hash;fffffffff' and '&hash;ffffffffffff') + * forms is '#fff' '#ffffff' '#fffffffff' and '#ffffffffffff') * * Return value: %TRUE if parsing of the specifier succeeded, * otherwise false. |