Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kim-em committed Dec 2, 2024
1 parent 3fec40d commit 47f4bc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lean4CheckerTests/OpenPrivate.lean
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ name component.
It is also possible to specify the module instead with
`open private a b c from Other.Module`.
-/
syntax (name := openPrivate) "open private" (ppSpace ident)*
syntax (name := openPrivate) "open" "private" (ppSpace ident)*
(" in" (ppSpace ident)*)? (" from" (ppSpace ident)*)? : command

/-- Elaborator for `open private`. -/
Expand All @@ -119,7 +119,7 @@ It will also open the newly created alias definition under the provided short na
It is also possible to specify the module instead with
`export private a b c from Other.Module`.
-/
syntax (name := exportPrivate) "export private" (ppSpace ident)*
syntax (name := exportPrivate) "export" "private" (ppSpace ident)*
(" in" (ppSpace ident)*)? (" from" (ppSpace ident)*)? : command

/-- Elaborator for `export private`. -/
Expand Down

0 comments on commit 47f4bc1

Please sign in to comment.