mirror of https://github.com/astral-sh/ruff
Remove extra dot in rule documentation (#18871)
This commit is contained in:
parent
06a78d0bd0
commit
9570d39f9b
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue