docs: Remove '\' escape character from literals

commit 7f6a964c47 replaced entities, but
escaped the replacement text also inside literals, which resulted in the
escaping '\' to also appear in the documentation.

https://bugzilla.gnome.org/show_bug.cgi?id=727322
This commit is contained in:
Volker Sobek
2014-03-28 21:55:03 +01:00
committed by Matthias Clasen
parent 1bf2e0600f
commit f8b6bfe744
5 changed files with 6 additions and 6 deletions

View File

@ -163,7 +163,7 @@ gdk_color_parse (const gchar *spec,
* @color: a #GdkColor
*
* Returns a textual specification of @color in the hexadecimal
* form `\#rrrrggggbbbb`, where `r`, `g` and `b` are hex digits
* form `#rrrrggggbbbb`, where `r`, `g` and `b` are hex digits
* representing the red, green and blue components respectively.
*
* The returned string can be parsed by gdk_color_parse().