Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Effect/Applicative.agda
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ module _ where

-- Smart constructor
mkRawApplicative :
(F : Set f → Set f) →
(F : Set f → Set g) →
(pure : ∀ {A} → A → F A) →
(app : ∀ {A B} → F (A → B) → F A → F B) →
RawApplicative F
Expand Down
2 changes: 1 addition & 1 deletion src/Effect/Monad.agda
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ module _ where
open RawApplicative

mkRawMonad :
(F : Set f → Set f) →
(F : Set f → Set g) →
(pure : ∀ {A} → A → F A) →
(bind : ∀ {A B} → F A → (A → F B) → F B) →
RawMonad F
Expand Down