Skip to content

Commit

Permalink
Update small typo on Build example (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
xvw authored Dec 11, 2020
1 parent c93d3a1 commit 046f0ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/Build.hs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ newtype Task k v = Task { run :: forall f. Selective f => (k -> f v) -> f v }
-- | Selective build scripts.
type Script k v = k -> Maybe (Task k v)

-- | Build dependencies with over-appriximation.
-- | Build dependencies with over-approximation.
dependenciesOver :: Task k v -> [k]
dependenciesOver task = getOver $ run task (\k -> Over [k])

-- | Build dependencies with under-appriximation.
-- | Build dependencies with under-approximation.
dependenciesUnder :: Task k v -> [k]
dependenciesUnder task = getUnder $ run task (\k -> Under [k])

Expand Down

0 comments on commit 046f0ee

Please sign in to comment.