Skip to content

Commit d0e0666

Browse files
committed
---
yaml --- r: 7194 b: refs/heads/master c: 175196b h: refs/heads/master v: v3
1 parent 888ef1e commit d0e0666

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 2592422150fefb75e2bfa8b894b3b99d364ffd93
2+
refs/heads/master: 175196bbb8057d21959feb51cf07f3518e9ef247

trunk/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)