Skip to content

Commit 175196b

Browse files
committed
libcore: Fix long lines
1 parent 2592422 commit 175196b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/libcore/bool.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ pure fn xor(a: t, b: t) -> t { (a && !b) || (!a && b) }
3636
pure fn implies(a: t, b: t) -> t { !a || b }
3737

3838
#[doc(
39-
brief = "true if truth values `a` and `b` are indistinguishable in the logic"
39+
brief = "true if truth values `a` and `b` \
40+
are indistinguishable in the logic"
4041
)]
4142
pure fn eq(a: t, b: t) -> bool { a == b }
4243

@@ -71,7 +72,8 @@ pure fn from_str(s: str) -> t {
7172
pure fn to_str(v: t) -> str { if v { "true" } else { "false" } }
7273

7374
#[doc(
74-
brief = "Iterates over all truth values by passing them to `blk` in an unspecified order"
75+
brief = "Iterates over all truth values by passing them to `blk` \
76+
in an unspecified order"
7577
)]
7678
fn all_values(blk: block(v: t)) {
7779
blk(true);

0 commit comments

Comments
 (0)