From dfa0435e9e91de3152f3c43ce8f35fa98fc03cbd Mon Sep 17 00:00:00 2001 From: Simon Jakobi Date: Sun, 13 Sep 2020 17:46:25 +0200 Subject: [PATCH] Fix since annotation --- src/Nix/Expr/Types.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Nix/Expr/Types.hs b/src/Nix/Expr/Types.hs index 9663cd5..a59e396 100644 --- a/src/Nix/Expr/Types.hs +++ b/src/Nix/Expr/Types.hs @@ -387,7 +387,7 @@ instance Eq1 NKeyName where liftEq _ (StaticKey a) (StaticKey b) = a == b liftEq _ _ _ = False --- | @since UNRELEASED +-- | @since 0.10.1 instance Ord1 NKeyName where liftCompare cmp (DynamicKey a) (DynamicKey b) = liftCompare2 (liftCompare cmp) cmp a b liftCompare _ (DynamicKey _) (StaticKey _) = LT