Skip to content

Commit d3ee903

Browse files
committed
disable rustfmt wrap_comments
1 parent a778f1f commit d3ee903

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
max_width = 79
2-
wrap_comments = true
2+
wrap_comments = false
33
error_on_line_overflow = false
44
fn_args_density = "Compressed"

stdsimd/mod.rs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -212,10 +212,7 @@
212212
/// AVX2 and also for the default platform.
213213
///
214214
/// ```rust
215-
/// # #![cfg_attr(
216-
/// # not(dox),
217-
/// # feature(cfg_target_feature, target_feature, stdsimd)
218-
/// # )]
215+
/// # #![cfg_attr(not(dox),feature(cfg_target_feature, target_feature, stdsimd))]
219216
/// # #[cfg(not(dox))]
220217
/// # #[macro_use]
221218
/// # extern crate stdsimd;
@@ -256,10 +253,7 @@
256253
/// we'll be using SSE4.1 features to implement hex encoding.
257254
///
258255
/// ```
259-
/// # #![cfg_attr(
260-
/// # not(dox),
261-
/// # feature(cfg_target_feature, target_feature, stdsimd)
262-
/// # )]
256+
/// # #![cfg_attr(not(dox),feature(cfg_target_feature, target_feature, stdsimd))]
263257
/// # #![cfg_attr(not(dox), no_std)]
264258
/// # #[cfg(not(dox))]
265259
/// # extern crate std as real_std;

0 commit comments

Comments
 (0)