diff options
Diffstat (limited to 'app/History/Issues.hs')
-rw-r--r-- | app/History/Issues.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/History/Issues.hs b/app/History/Issues.hs index 09f51dd..49bb893 100644 --- a/app/History/Issues.hs +++ b/app/History/Issues.hs @@ -12,7 +12,7 @@ import Data.Proxy (Proxy) import Data.Text qualified as T import GHC.Generics (Generic) import History.Plan (Id, Planable, Proto, assume, propagate, protoOf) -import History.Scramble (Scramble (..), getScramble) +import History.Scramble (Scramble (..), getScrambleOf) import Issue qualified as I data Issues = Issues @@ -26,7 +26,7 @@ instance Planable Issues where type Id Issues = Backend.CommitHash type Proto Issues = Scramble protoOf :: Proxy Issues -> Backend.CommitHash -> IO Scramble - protoOf _ = getScramble + protoOf _ = getScrambleOf assume :: Scramble -> Issues assume (Scramble {..}) = Issues {filesSeen = filesChanged, ..} |