Skip to content

Commit

Permalink
chore: clean code
Browse files Browse the repository at this point in the history
  • Loading branch information
magic-akari committed Dec 10, 2024
1 parent 8842dc4 commit cfafdb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/formatter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ pub(crate) fn check_fmt_off(s: &str) -> Option<bool> {
const ON: bool = false;
const OFF: bool = true;

const NEXT: u32 = 1;
const STAY: u32 = 0;
const NEXT: u8 = 1;
const STAY: u8 = 0;

// SPACE SPACE SPACE n
// ┌┐ ┌┐ ┌┐ ┌───────────► ON
Expand Down

0 comments on commit cfafdb8

Please sign in to comment.