Skip to content

Commit d6e7ff1

Browse files
committed
Remove trailing spaces
1 parent 427549c commit d6e7ff1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
//! ```
101101
//!
102102
//! ## Type ascription
103-
//!
103+
//!
104104
//! ```rust,ignore
105105
//! let mut x = some_generic_computation();
106106
//! if_chain! {
@@ -110,9 +110,9 @@
110110
//! else { x += 1 }
111111
//! }
112112
//! ```
113-
//!
113+
//!
114114
//! becomes
115-
//!
115+
//!
116116
//! ```rust,ignore
117117
//! let mut x = some_generic_computation();
118118
//! if x > 7 {
@@ -122,7 +122,7 @@
122122
//! x += 1
123123
//! }
124124
//! ```
125-
//!
125+
//!
126126
//! ## Multiple patterns
127127
//!
128128
//! ```rust,ignore

0 commit comments

Comments
 (0)