Remove extra dot in rule documentation (#18871)

This commit is contained in:
Charlie Marsh 2025-06-22 20:33:21 -04:00 committed by GitHub
parent 06a78d0bd0
commit 9570d39f9b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ use crate::{Fix, FixAvailability, Violation};
/// ///
/// ## Fix safety /// ## Fix safety
/// This rule's fix is marked as unsafe if there's comments in the /// This rule's fix is marked as unsafe if there's comments in the
/// base classes, as comments may be removed.. /// base classes, as comments may be removed.
/// ///
/// For example, the fix would be marked as unsafe in the following case: /// For example, the fix would be marked as unsafe in the following case:
/// ```python /// ```python

View File

@ -105,7 +105,7 @@ pub(crate) enum Log {
#[derive(Copy, Clone, Debug, PartialEq, Eq, Deserialize, Serialize, Default)] #[derive(Copy, Clone, Debug, PartialEq, Eq, Deserialize, Serialize, Default)]
#[serde(rename_all = "kebab-case")] #[serde(rename_all = "kebab-case")]
pub(crate) enum SystemKind { pub(crate) enum SystemKind {
/// Use an in-memory system with a case sensitive file system.. /// Use an in-memory system with a case-sensitive file system.
/// ///
/// This is recommended for all tests because it's fast. /// This is recommended for all tests because it's fast.
#[default] #[default]