diff --git a/crates/ruff_linter/src/rules/pep8_naming/rules/mixed_case_variable_in_global_scope.rs b/crates/ruff_linter/src/rules/pep8_naming/rules/mixed_case_variable_in_global_scope.rs index 84e955033e..e7f87f4c4e 100644 --- a/crates/ruff_linter/src/rules/pep8_naming/rules/mixed_case_variable_in_global_scope.rs +++ b/crates/ruff_linter/src/rules/pep8_naming/rules/mixed_case_variable_in_global_scope.rs @@ -18,8 +18,8 @@ use crate::rules::pep8_naming::helpers; /// > (Let’s hope that these variables are meant for use inside one module /// > only.) The conventions are about the same as those for functions. /// > -/// > Modules that are designed for use via from M import * should use the -/// > __all__ mechanism to prevent exporting globals, or use the older +/// > Modules that are designed for use via `from M import *` should use the +/// > `__all__` mechanism to prevent exporting globals, or use the older /// > convention of prefixing such globals with an underscore (which you might /// > want to do to indicate these globals are “module non-public”). /// >