diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4215309..5180c53 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,7 +88,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@stable with: - toolchain: "1.79" # STABLE + toolchain: "1.80" # STABLE - uses: Swatinem/rust-cache@v2 - name: Check documentation env: @@ -103,7 +103,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@stable with: - toolchain: "1.79" # STABLE + toolchain: "1.80" # STABLE components: rustfmt - uses: Swatinem/rust-cache@v2 - name: Check formatting @@ -119,7 +119,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@stable with: - toolchain: "1.79" # STABLE + toolchain: "1.80" # STABLE components: clippy - uses: Swatinem/rust-cache@v2 - name: Install SARIF tools diff --git a/crates/typos-cli/src/bin/typos-cli/report.rs b/crates/typos-cli/src/bin/typos-cli/report.rs index 27ad1a8..a70bd91 100644 --- a/crates/typos-cli/src/bin/typos-cli/report.rs +++ b/crates/typos-cli/src/bin/typos-cli/report.rs @@ -348,7 +348,7 @@ mod tests { fn test_calculate_visible_column_width_zwj_sequences() { let zwj_sequences = [ "😵‍💫", /* U+1F635 U+200D U+1F4AB */ - "👁️‍🗨️", /* U+1F441 U+FE0F U+200D U+1F5E8 U+FE0F */ + "👁️‍🗨️", /* U+1F441 U+FE0F U+200D U+1F5E8 U+FE0F */ ]; for (i, ch) in zwj_sequences.iter().enumerate() { let width = calculate_visible_column_width(ch);