From ca4ba16b1d3f4de6c2ba3befcd48aa68e92f5d25 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Fri, 30 May 2025 10:58:15 +0200 Subject: [PATCH] Fix example in README The `dns` argument should be inside the parenthesis, like is already the case for a different example in the README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a24a1c7..0efb1a9 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ Then use `toString` to generate as a string. ``` nix { dns }: - zoneAsString = dns.lib.toString "example.com" (import ./example.com.nix) { inherit dns; }; + zoneAsString = dns.lib.toString "example.com" (import ./example.com.nix { inherit dns; }); ```