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