提交 175196bb 编写于 作者: B Brian Anderson

libcore: Fix long lines

上级 25924221
......@@ -36,7 +36,8 @@
pure fn implies(a: t, b: t) -> t { !a || b }
#[doc(
brief = "true if truth values `a` and `b` are indistinguishable in the logic"
brief = "true if truth values `a` and `b` \
are indistinguishable in the logic"
)]
pure fn eq(a: t, b: t) -> bool { a == b }
......@@ -71,7 +72,8 @@
pure fn to_str(v: t) -> str { if v { "true" } else { "false" } }
#[doc(
brief = "Iterates over all truth values by passing them to `blk` in an unspecified order"
brief = "Iterates over all truth values by passing them to `blk` \
in an unspecified order"
)]
fn all_values(blk: block(v: t)) {
blk(true);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册