Skip to content

Commit

Permalink
Merge pull request #930 from mulkieran/fix-docs
Browse files Browse the repository at this point in the history
Avoid something that looks like an HTML tag
  • Loading branch information
mulkieran authored Jul 29, 2024
2 parents ed714e9 + fcb5200 commit 4b49da9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub struct Device {
pub minor: u32,
}

/// Display format is the device number in "<major>:<minor>" format
/// Display format is the device number in `<major>:<minor>` format
impl fmt::Display for Device {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}:{}", self.major, self.minor)
Expand Down

0 comments on commit 4b49da9

Please sign in to comment.