From 51e7ce2c2016a95ad987578c5ee41b27b6175a9a Mon Sep 17 00:00:00 2001 From: "Simental Magana, Marcos" Date: Wed, 12 Jun 2019 10:56:07 -0500 Subject: [PATCH] docs: fix typo on arrays examples in gvariant-text example lists [(1, 2), (3, 4.0)], but mentions numbers 1 and 4 being parsed as integrers, this seems wrong as 4.0 its explicitly parsed as double. Signed-off-by: Simental Magana, Marcos --- docs/reference/glib/gvariant-text.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/glib/gvariant-text.xml b/docs/reference/glib/gvariant-text.xml index 71d07dfb1..90da39c55 100644 --- a/docs/reference/glib/gvariant-text.xml +++ b/docs/reference/glib/gvariant-text.xml @@ -380,7 +380,7 @@ inferencing in action. - [(1, 2), (3, 4.0)] causes the 2 to also be parsed as a double (but the 1 and 4 are still + [(1, 2), (3, 4.0)] causes the 2 to also be parsed as a double (but the 1 and 3 are still integers).