]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_ast/src/util/case.rs
Remove double spaces after dots in comments
[rust.git] / compiler / rustc_ast / src / util / case.rs
1 /// Whatever to ignore case (`fn` vs `Fn` vs `FN`) or not. Used for recovering.
2 #[derive(Copy, Clone, Debug, Eq, PartialEq)]
3 pub enum Case {
4     Sensitive,
5     Insensitive,
6 }