Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: require
ident
s come in a column after the start of a command
Commands that can parse an `ident` generally should require that the `ident` use `colGt`. This keeps typos in commands from being interpreted as identifiers. For example, without this rule, ``` universe u Open Lean ```` parses the same as `universe u Open Lean`. It would be better to get an error on `Open`. This PR adds `checkColGt` to `section`, `namespace`, `end`, `variable`, and `universe`. Closes leanprover#2684
- Loading branch information