Skip to content

Commit

Permalink
backticks in docs to appease clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
snowdrop4 committed Nov 27, 2024
1 parent d261a0e commit e9af7fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ use crate::rules::pep8_naming::settings::IgnoreNames;
///
/// ## Note
/// Identifiers consisting of a single uppercase character are ambiguous under
/// the rules of [PEP 8], which specifies CamelCase for classes and
/// ALL_CAPS_SNAKE_CASE for constants. Without a second character, it is not
/// the rules of [PEP 8], which specifies `CamelCase` for classes and
/// `ALL_CAPS_SNAKE_CASE` for constants. Without a second character, it is not
/// possible to reliably guess whether the identifier is intended to be part
/// of a CamelCase string for a class or an ALL_CAPS_SNAKE_CASE string for
/// of a `CamelCase` string for a class or an `ALL_CAPS_SNAKE_CASE` string for
/// a constant, since both conventions will produce the same output when given
/// a single input character. Therefore, this lint rule does not apply to cases
/// where the alias for the imported identifier consists of a single uppercase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ use crate::rules::pep8_naming::settings::IgnoreNames;
///
/// ## Note
/// Identifiers consisting of a single uppercase character are ambiguous under
/// the rules of [PEP 8], which specifies CamelCase for classes and
/// ALL_CAPS_SNAKE_CASE for constants. Without a second character, it is not
/// the rules of [PEP 8], which specifies `CamelCase` for classes and
/// `ALL_CAPS_SNAKE_CASE` for constants. Without a second character, it is not
/// possible to reliably guess whether the identifier is intended to be part
/// of a CamelCase string for a class or an ALL_CAPS_SNAKE_CASE string for
/// of a `CamelCase` string for a class or an `ALL_CAPS_SNAKE_CASE` string for
/// a constant, since both conventions will produce the same output when given
/// a single input character. Therefore, this lint rule does not apply to cases
/// where the imported identifier consists of a single uppercase character.
Expand Down

0 comments on commit e9af7fa

Please sign in to comment.