summaryrefslogtreecommitdiffstats
path: root/lib/gvariant.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gvariant.nix')
-rw-r--r--lib/gvariant.nix19
1 files changed, 10 insertions, 9 deletions
diff --git a/lib/gvariant.nix b/lib/gvariant.nix
index 3142ffc5f149..708213224d3e 100644
--- a/lib/gvariant.nix
+++ b/lib/gvariant.nix
@@ -1,16 +1,17 @@
+/*
+ A partial and basic implementation of GVariant formatted strings.
+ See [GVariant Format Strings](https://docs.gtk.org/glib/gvariant-format-strings.html) for details.
+
+ :::{.warning}
+ This API is not considered fully stable and it might therefore
+ change in backwards incompatible ways without prior notice.
+ :::
+*/
+
# This file is based on https://github.com/nix-community/home-manager
# Copyright (c) 2017-2022 Home Manager contributors
-#
-
-
{ lib }:
-/* A partial and basic implementation of GVariant formatted strings.
- See https://docs.gtk.org/glib/gvariant-format-strings.html for detauls.
-
- Note, this API is not considered fully stable and it might therefore
- change in backwards incompatible ways without prior notice.
-*/
let
inherit (lib)
concatMapStringsSep concatStrings escape head replaceStrings;