diff options
author | figsoda <[email protected]> | 2021-11-01 00:45:57 +0000 |
---|---|---|
committer | figsoda <[email protected]> | 2021-11-01 00:45:57 +0000 |
commit | 78dda5ec5a637b7756ae17d69ff90cf5de210404 (patch) | |
tree | 66e2ddbf63f214d9410cd08530a7aac7f2ea1d95 /lib/src/lints/unquoted_splice.rs | |
parent | 150106459f7a8e0325fe85c41919cc32f2f19964 (diff) |
fix tests
Diffstat (limited to 'lib/src/lints/unquoted_splice.rs')
-rw-r--r-- | lib/src/lints/unquoted_splice.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/src/lints/unquoted_splice.rs b/lib/src/lints/unquoted_splice.rs index c2fd6e4..4700d31 100644 --- a/lib/src/lints/unquoted_splice.rs +++ b/lib/src/lints/unquoted_splice.rs | |||
@@ -16,7 +16,7 @@ use rnix::{ | |||
16 | /// | 16 | /// |
17 | /// ## Example | 17 | /// ## Example |
18 | /// | 18 | /// |
19 | /// ``` | 19 | /// ```nix |
20 | /// let | 20 | /// let |
21 | /// pkgs = nixpkgs.legacyPackages.${system}; | 21 | /// pkgs = nixpkgs.legacyPackages.${system}; |
22 | /// in | 22 | /// in |
@@ -25,7 +25,7 @@ use rnix::{ | |||
25 | /// | 25 | /// |
26 | /// Quote the splice expression: | 26 | /// Quote the splice expression: |
27 | /// | 27 | /// |
28 | /// ``` | 28 | /// ```nix |
29 | /// let | 29 | /// let |
30 | /// pkgs = nixpkgs.legacyPackages."${system}"; | 30 | /// pkgs = nixpkgs.legacyPackages."${system}"; |
31 | /// in | 31 | /// in |