Skip to content

Commit 3924c8e

Browse files
committed
---
yaml --- r: 7867 b: refs/heads/snap-stage3 c: 7c925cf h: refs/heads/master i: 7865: 6b6fad5 7863: ce10fa8 v: v3
1 parent 0942acc commit 3924c8e

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,6 +1,6 @@
11
---
22
refs/heads/master: 2898dcc5d97da9427ac367542382b6239d9c0bbf
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 7820c2f17a2f1f94eddb6fc3897d61e473c496c4
4+
refs/heads/snap-stage3: 7c925cfaaf2ac311b681862a01c4aa5ecc466090
55
refs/heads/try: 2898dcc5d97da9427ac367542382b6239d9c0bbf
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/snap-stage3/src/libcore/f32.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,15 @@ pure fn gt(x: f32, y: f32) -> bool { ret x > y; }
5959
// to the libmath macros in the rust runtime for performance
6060

6161
#[doc(
62-
brief = "Returns true if `x` is a positive number, including +0.0f320 and +Infinity."
62+
brief = "Returns true if `x` is a positive number, including +0.0f320 \
63+
and +Infinity."
6364
)]
6465
pure fn is_positive(x: f32) -> bool
6566
{ ret x > 0.0f32 || (1.0f32/x) == infinity; }
6667

6768
#[doc(
68-
brief = "Returns true if `x` is a negative number, including -0.0f320 and -Infinity."
69+
brief = "Returns true if `x` is a negative number, including -0.0f320 \
70+
and -Infinity."
6971
)]
7072
pure fn is_negative(x: f32) -> bool
7173
{ ret x < 0.0f32 || (1.0f32/x) == neg_infinity; }

0 commit comments

Comments
 (0)