Skip to content

Commit b62d84b

Browse files
committed
Run fmt on nightly
It seems `format_code_in_doc_comments` is unstable.
1 parent 1043b4c commit b62d84b

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions-rs/toolchain@v1
4040
with:
4141
profile: minimal
42-
toolchain: stable
42+
toolchain: nightly
4343
override: true
4444
- run: rustup component add rustfmt
4545
- uses: actions-rs/cargo@v1

src/marker_traits.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
//! assert_eq!(-42, N42::to_i32());
1515
//! assert_eq!(-42, N42::I32);
1616
//! ```
17-
//!
1817
1918
/// A **marker trait** to designate that a type is not zero. All number types in this
2019
/// crate implement `NonZero` except `B0`, `U0`, and `Z0`.

src/operator_aliases.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
//! assert_type_eq!(X, Y);
1717
//! ```
1818
//!
19-
//!
2019
2120
// Aliases!!!
2221
use crate::type_operators::{

0 commit comments

Comments
 (0)