Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ use crate::{FixAvailability, Violation};
///
/// ## Fix safety
///
/// There are two categories of fix, the first of which is where it looks like
/// There are two categories of unsafe fixes, the first of which is where it looks like
/// the author intended to use an octal literal but the `0o` prefix is missing:
///
/// ```python
Expand Down Expand Up @@ -72,7 +72,7 @@ use crate::{FixAvailability, Violation};
///
/// A fix is only available if the integer literal matches a set of common modes.
#[derive(ViolationMetadata)]
#[violation_metadata(preview_since = "0.12.1")]
#[violation_metadata(stable_since = "0.15.0")]
pub(crate) struct NonOctalPermissions;

impl Violation for NonOctalPermissions {
Expand Down