diff --git a/clippy_lints/src/enum_glob_use.rs b/clippy_lints/src/enum_glob_use.rs index 9aa43653ab5f..c00cdc07f843 100644 --- a/clippy_lints/src/enum_glob_use.rs +++ b/clippy_lints/src/enum_glob_use.rs @@ -12,7 +12,8 @@ use utils::span_lint; /// an enumeration variant, rather than importing variants. /// /// **Known problems:** Old-style enumerations that prefix the variants are -/// still around. +/// still around. May cause problems with modules that are not snake_case (see +/// [#2397](https://github.com/rust-lang-nursery/rust-clippy/issues/2397)) /// /// **Example:** /// ```rust