Skip to content

Commit 9b0623d

Browse files
committed
Wrap line
1 parent 145385e commit 9b0623d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libcore/option.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,8 @@ impl<T> Option<T> {
201201
/// ```
202202
///
203203
/// [`None`]: #variant.None
204-
#[must_use = "if you intended to assert that this doesn't have a value, consider `.and_then(|| panic!(\"`Option` had a value when expected `None`\"))` instead"]
204+
#[must_use = "if you intended to assert that this doesn't have a value, consider \
205+
`.and_then(|| panic!(\"`Option` had a value when expected `None`\"))` instead"]
205206
#[inline]
206207
#[stable(feature = "rust1", since = "1.0.0")]
207208
pub fn is_none(&self) -> bool {

0 commit comments

Comments
 (0)