diff options
author | stuebinm | 2024-07-04 18:09:13 +0200 |
---|---|---|
committer | stuebinm | 2024-07-04 18:09:13 +0200 |
commit | 234f3daa1439ace3db0cf2dbb92b83476afddd37 (patch) | |
tree | 2d6d551a75f5098c1e1bbd593ff4c1c3645aeac7 /src/Conftrack/Value.hs | |
parent | 3e71d0ab05c7f5fd71a75b86eeac6f8a1edc3a44 (diff) |
fix a couple warnings
Diffstat (limited to '')
-rw-r--r-- | src/Conftrack/Value.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Conftrack/Value.hs b/src/Conftrack/Value.hs index 50e4e30..3eda24a 100644 --- a/src/Conftrack/Value.hs +++ b/src/Conftrack/Value.hs @@ -48,7 +48,7 @@ key = QuasiQuoter prefixedWith :: Key -> [KeyPart] -> Key -prefixedWith (Key key) prefix = Key (prependList prefix key) +prefixedWith (Key k) prefix = Key (prependList prefix k) data ConfigError = ParseError Text |