From cfa5c2869b535e5e83dac6b04745f673c591e0d2 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sat, 6 May 2023 16:16:47 +0200 Subject: [PATCH] docs: GVariant dictionaries are already supported The support for dictionaries were introduced in 864ff685fe6443101a0a8f3950d21bcb4330e56a. --- docs/writing-modules.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing-modules.adoc b/docs/writing-modules.adoc index 8a6c932dc..b502c17c8 100644 --- a/docs/writing-modules.adoc +++ b/docs/writing-modules.adoc @@ -78,7 +78,7 @@ foo.bar = { would place `c` before `b` and after `a` in the graph. [[sec-option-types-gvariant]]`hm.types.gvariant`:: -This type is useful for options representing {gvariant-description}[GVariant] values. The type accepts all primitive GVariant types as well as arrays and tuples. Dictionaries are not currently supported. +This type is useful for options representing {gvariant-description}[GVariant] values. The type accepts all primitive GVariant types as well as arrays, tuples, ``maybe'' types, and dictionaries. + To create a GVariant value you can use a number of provided functions. Examples assume an option `foo.bar` of type `hm.types.gvariant`. +