From fbc55992fa36ad5719586b4bc356774f14395491 Mon Sep 17 00:00:00 2001 From: sorki Date: Mon, 11 Dec 2023 15:27:54 +0100 Subject: [PATCH] core: fix Wildcard spec haddock --- hnix-store-core/src/System/Nix/DerivedPath.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hnix-store-core/src/System/Nix/DerivedPath.hs b/hnix-store-core/src/System/Nix/DerivedPath.hs index 2cfbdd00..16c8f93f 100644 --- a/hnix-store-core/src/System/Nix/DerivedPath.hs +++ b/hnix-store-core/src/System/Nix/DerivedPath.hs @@ -25,7 +25,7 @@ import qualified System.Nix.StorePath data OutputsSpec = OutputsSpec_All - -- ^ Wildcard spec (!*) meaning all outputs + -- ^ Wildcard spec (^*) meaning all outputs | OutputsSpec_Names (Set OutputName) -- ^ Set of specific outputs deriving (Eq, Generic, Ord, Show)