Skip to content

Commit 7388b4b

Browse files
authored
mark variables private in Data.Container.FreeMonad (#2332)
1 parent 3a31825 commit 7388b4b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/Data/Container/FreeMonad.agda

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,12 @@ open import Effect.Applicative using (RawApplicative)
2020
open import Effect.Monad using (RawMonad)
2121
open import Function.Base as Function using (_$_; _∘_)
2222

23-
variable
24-
x y s p ℓ : Level
25-
C : Container s p
26-
X : Set x
27-
Y : Set y
23+
private
24+
variable
25+
x y s p ℓ : Level
26+
C : Container s p
27+
X : Set x
28+
Y : Set y
2829

2930
infixl 1 _⋆C_
3031
infix 1 _⋆_

0 commit comments

Comments
 (0)