8000 Rollup of 9 pull requests by kennytm · Pull Request #46965 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 9 pull requests #46965

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 20 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
24834eb
rustc: Set release mode cgus to 16 by default
alexcrichton Dec 21, 2017
c026d19
Add a feature gate for nested uses of `impl Trait`
cramertj Dec 20, 2017
de46292
Add LLVM `minnum`/`maxnum` intrinsics
varkor Dec 21, 2017
20eece1
Correct the return type for `x86_mm256_sad_epu8`
varkor Dec 21, 2017
a060814
Add comments to bootstrapping `minnum`/`maxnum`
varkor Dec 21, 2017
8a956e4
Clarify docs for split_at_mut
lucis-fluxum Dec 21, 2017
ebdd667
Make core::f32/f64 docs match std.
Dec 22, 2017
4e14a7d
Fixing Rust Moderation Team link
davidalber Dec 22, 2017
0e703ed
Add support for CloudABI targets to the rustc backend.
EdSchouten Dec 22, 2017
4156752
Add CloudABI to the list of supported targets.
EdSchouten Dec 22, 2017
dc71cab
Fix process test when using busybox mkdir
malbarbo Dec 22, 2017
642d9a5
Rollup merge of #46888 - cramertj:nested-impl-trait-error, r=nikomats…
kennytm Dec 23, 2017
f196e9b
Rollup merge of #46910 - alexcrichton:thinlto-default, r=michaelwoeri…
kennytm Dec 23, 2017
5d9fe6f
Rollup merge of #46926 - varkor:contrib-9, r=joshtriplett
kennytm Dec 23, 2017
26d7471
Rollup merge of #46928 - varkor:contrib-10, r=alexcrichton
kennytm Dec 23, 2017
089e617
Rollup merge of #46930 - lucis-fluxum:patch-1, r=QuietMisdreavus
kennytm Dec 23, 2017
b4fe39b
Rollup merge of #46933 - clarcharr:float_docs, r=steveklabnik
kennytm Dec 23, 2017
1a39267
Rollup merge of #46939 - davidalber:code-of-conduct-mod-team-link, r=…
kennytm Dec 23, 2017
543dabb
Rollup merge of #46940 - EdSchouten:cloudabi, r=alexcrichton
kennytm Dec 23, 2017
18047cf
Rollup merge of #46943 - malbarbo:process-test-busybox, r=alexcrichton
kennytm Dec 23, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Make core::f32/f64 docs match std.
  • Loading branch information
Clar Charr committed Dec 22, 2017
commit ebdd667d4083bae7aadebd8b56856fd2a30d9f1c
7 changes: 6 additions & 1 deletion src/libcore/num/f32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//! Operations and constants for 32-bits floats (`f32` type)
//! This module provides constants which are specific to the implementation
//! of the `f32` floating point data type.
//!
//! Mathematically significant numbers are provided in the `consts` sub-module.
//!
//! *[See also the `f32` primitive type](../../std/primitive.f32.html).*

#![stable(feature = "rust1", since = "1.0.0")]

Expand Down
7 changes: 6 additions & 1 deletion src/libcore/num/f64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//! Operations and constants for 64-bits floats (`f64` type)
//! This module provides constants which are specific to the implementation
//! of the `f64` floating point data type.
//!
//! Mathematically significant numbers are provided in the `consts` sub-module.
//!
//! *[See also the `f64` primitive type](../../std/primitive.f64.html).*

#![stable(feature = "rust1", since = "1.0.0")]

Expand Down
2 changes: 1 addition & 1 deletion src/libstd/f32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//!
//! Mathematically significant numbers are provided in the `consts` sub-module.
//!
//! *[See also the `f32` primitive type](../primitive.f32.html).*
//! *[See also the `f32` primitive type](../../std/primitive.f32.html).*

#![stable(feature = "rust1", since = "1.0.0")]
#![allow(missing_docs)]
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/f64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//!
//! Mathematically significant numbers are provided in the `consts` sub-module.
//!
//! *[See also the `f64` primitive type](../primitive.f64.html).*
//! *[See also the `f64` primitive type](../../std/primitive.f64.html).*

#![stable(feature = "rust1", since = "1.0.0")]
#![allow(missing_docs)]
Expand Down
0