mirror of
https://github.com/anoma/juvix.git
synced 2024-11-30 14:13:27 +03:00
4d0267ebb9
This PR fixes a formatting issue that drops blank lines between axiom declarations. It goes after: - #1980 - Closes https://github.com/anoma/juvix/issues/1986
14 lines
124 B
Plaintext
14 lines
124 B
Plaintext
module ShadowPublicOpen;
|
|
|
|
module M;
|
|
module N;
|
|
axiom A : Type;
|
|
end;
|
|
|
|
open N public;
|
|
end;
|
|
|
|
open M;
|
|
|
|
axiom A : Type;
|