summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Boles <dboles.src@gmail.com>2018-12-17 19:57:09 +0000
committerDaniel Boles <dboles.src@gmail.com>2018-12-17 20:49:34 +0000
commitc35e0cba3967849c4fc5f66983b34472745f4dae (patch)
treed341e82d9c0c56b0a78bc45f418e6d4e8d7d593a
parenta99bd2a422f7c7a04c6dc43bd4d1e814cd187718 (diff)
downloadgtk+-c35e0cba3967849c4fc5f66983b34472745f4dae.tar.gz
RGBA: Fix example to_string output for reality/CSS
* We don't output spaces anywhere in the code, unlike the doc suggested. * CSS explicitly forbids whitespace between function names and lparens: https://stackoverflow.com/questions/13877198
-rw-r--r--gdk/gdkrgba.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/gdkrgba.c b/gdk/gdkrgba.c
index de1c594337..fe82773f14 100644
--- a/gdk/gdkrgba.c
+++ b/gdk/gdkrgba.c
@@ -353,8 +353,8 @@ gdk_rgba_equal (gconstpointer p1,
* @rgba: a #GdkRGBA
*
* Returns a textual specification of @rgba in the form
- * `rgb (r, g, b)` or
- * `rgba (r, g, b, a)`,
+ * `rgb(r,g,b)` or
+ * `rgba(r g,b,a)`,
* where “r”, “g”, “b” and “a” represent the red, green,
* blue and alpha values respectively. r, g, and b are
* represented as integers in the range 0 to 255, and a