Skip to content

Commit 02fbf31

Browse files
committed
Auto merge of #30897 - Manishearth:rollup, r=Manishearth
- Successful merges: #30821, #30869, #30871, #30874, #30879, #30886, #30892 - Failed merges: #30864
2 parents 5b3a75f + a964c86 commit 02fbf31

File tree

12 files changed

+56
-52
lines changed

12 files changed

+56
-52
lines changed

mk/cfg/x86_64-unknown-bitrig.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CFG_STATIC_LIB_NAME_x86_64-unknown-bitrig=lib$(1).a
88
CFG_LIB_GLOB_x86_64-unknown-bitrig=lib$(1)-*.so
99
CFG_LIB_DSYM_GLOB_x86_64-unknown-bitrig=$(1)-*.dylib.dSYM
1010
CFG_JEMALLOC_CFLAGS_x86_64-unknown-bitrig := -m64 -I/usr/include $(CFLAGS)
11-
CFG_GCCISH_CFLAGS_x86_64-unknown-bitrig := -Wall -Werror -fPIC -m64 -I/usr/include $(CFLAGS)
11+
CFG_GCCISH_CFLAGS_x86_64-unknown-bitrig := -Wall -Werror -fPIE -fPIC -m64 -I/usr/include $(CFLAGS)
1212
CFG_GCCISH_LINK_FLAGS_x86_64-unknown-bitrig := -shared -pic -pthread -m64 $(LDFLAGS)
1313
CFG_GCCISH_DEF_FLAG_x86_64-unknown-bitrig := -Wl,--export-dynamic,--dynamic-list=
1414
CFG_LLC_FLAGS_x86_64-unknown-bitrig :=

src/doc/book/bibliography.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Rust, as well as publications about Rust.
3333
* [Non-blocking steal-half work queues](http://www.cs.bgu.ac.il/%7Ehendlerd/papers/p280-hendler.pdf)
3434
* [Reagents: expressing and composing fine-grained concurrency](http://www.mpi-sws.org/~turon/reagents.pdf)
3535
* [Algorithms for scalable synchronization of shared-memory multiprocessors](https://www.cs.rochester.edu/u/scott/papers/1991_TOCS_synch.pdf)
36-
* [Epoc-based reclamation](https://www.cl.cam.ac.uk/techreports/UCAM-CL-TR-579.pdf).
36+
* [Epoch-based reclamation](https://www.cl.cam.ac.uk/techreports/UCAM-CL-TR-579.pdf).
3737

3838
### Others
3939

src/doc/book/unsafe.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ unsafe impl Scary for i32 {}
4141
```
4242

4343
It’s important to be able to explicitly delineate code that may have bugs that
44-
cause big problems. If a Rust program segfaults, you can be sure it’s somewhere
45-
in the sections marked `unsafe`.
44+
cause big problems. If a Rust program segfaults, you can be sure the cause is
45+
related to something marked `unsafe`.
4646

4747
# What does ‘safe’ mean?
4848

src/doc/reference.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -3677,10 +3677,10 @@ sites are:
36773677

36783678
* `let` statements where an explicit type is given.
36793679

3680-
For example, `128` is coerced to have type `i8` in the following:
3680+
For example, `42` is coerced to have type `i8` in the following:
36813681

36823682
```rust
3683-
let _: i8 = 128;
3683+
let _: i8 = 42;
36843684
```
36853685

36863686
* `static` and `const` statements (similar to `let` statements).
@@ -3690,36 +3690,36 @@ sites are:
36903690
The value being coerced is the actual parameter, and it is coerced to
36913691
the type of the formal parameter.
36923692

3693-
For example, `128` is coerced to have type `i8` in the following:
3693+
For example, `42` is coerced to have type `i8` in the following:
36943694

36953695
```rust
36963696
fn bar(_: i8) { }
36973697

36983698
fn main() {
3699-
bar(128);
3699+
bar(42);
37003700
}
37013701
```
37023702

37033703
* Instantiations of struct or variant fields
37043704

3705-
For example, `128` is coerced to have type `i8` in the following:
3705+
For example, `42` is coerced to have type `i8` in the following:
37063706

37073707
```rust
37083708
struct Foo { x: i8 }
37093709

37103710
fn main() {
3711-
Foo { x: 128 };
3711+
Foo { x: 42 };
37123712
}
37133713
```
37143714

37153715
* Function results, either the final line of a block if it is not
37163716
semicolon-terminated or any expression in a `return` statement
37173717

3718-
For example, `128` is coerced to have type `i8` in the following:
3718+
For example, `42` is coerced to have type `i8` in the following:
37193719

37203720
```rust
37213721
fn foo() -> i8 {
3722-
128
3722+
42
37233723
}
37243724
```
37253725

src/liballoc/boxed.rs

+14-14
Original file line numberDiff line numberDiff line change
@@ -237,17 +237,17 @@ impl<T> Box<T> {
237237
}
238238

239239
impl<T: ?Sized> Box<T> {
240-
/// Constructs a box from the raw pointer.
240+
/// Constructs a box from a raw pointer.
241241
///
242-
/// After this function call, pointer is owned by resulting box.
243-
/// In particular, it means that `Box` destructor calls destructor
244-
/// of `T` and releases memory. Since the way `Box` allocates and
245-
/// releases memory is unspecified, the only valid pointer to pass
246-
/// to this function is the one taken from another `Box` with
247-
/// `Box::into_raw` function.
242+
/// After calling this function, the raw pointer is owned by the
243+
/// resulting `Box`. Specifically, the `Box` destructor will call
244+
/// the destructor of `T` and free the allocated memory. Since the
245+
/// way `Box` allocates and releases memory is unspecified, the
246+
/// only valid pointer to pass to this function is the one taken
247+
/// from another `Box` via the `Box::into_raw` function.
248248
///
249-
/// Function is unsafe, because improper use of this function may
250-
/// lead to memory problems like double-free, for example if the
249+
/// This function is unsafe because improper use may lead to
250+
/// memory problems. For example, a double-free may occur if the
251251
/// function is called twice on the same raw pointer.
252252
#[stable(feature = "box_raw", since = "1.4.0")]
253253
#[inline]
@@ -257,11 +257,11 @@ impl<T: ?Sized> Box<T> {
257257

258258
/// Consumes the `Box`, returning the wrapped raw pointer.
259259
///
260-
/// After call to this function, caller is responsible for the memory
261-
/// previously managed by `Box`, in particular caller should properly
262-
/// destroy `T` and release memory. The proper way to do it is to
263-
/// convert pointer back to `Box` with `Box::from_raw` function, because
264-
/// `Box` does not specify, how memory is allocated.
260+
/// After calling this function, the caller is responsible for the
261+
/// memory previously managed by the `Box`. In particular, the
262+
/// caller should properly destroy `T` and release the memory. The
263+
/// proper way to do so is to convert the raw pointer back into a
264+
/// `Box` with the `Box::from_raw` function.
265265
///
266266
/// # Examples
267267
///

src/libcollections/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
//! Collection types.
1212
//!
13-
//! See [std::collections](../std/collections) for a detailed discussion of
13+
//! See [std::collections](../std/collections/index.html) for a detailed discussion of
1414
//! collections in Rust.
1515
1616
#![crate_name = "collections"]

src/libcollections/range.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![unstable(feature = "collections_range", reason = "was just added",
12-
issue = "27711")]
11+
#![unstable(feature = "collections_range",
12+
reason = "waiting for dust to settle on inclusive ranges",
13+
issue = "30877")]
1314

1415
//! Range syntax.
1516

src/libcollections/str.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1384,7 +1384,7 @@ impl str {
13841384
///
13851385
/// For iterating from the front, the [`matches()`] method can be used.
13861386
///
1387-
/// [`matches`]: #method.matches
1387+
/// [`matches()`]: #method.matches
13881388
///
13891389
/// # Examples
13901390
///

src/libcollections/string.rs

+7-4
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ use boxed::Box;
9898
/// hello.push_str("orld!");
9999
/// ```
100100
///
101+
/// [`char`]: ../primitive.char.html
101102
/// [`push()`]: #method.push
102103
/// [`push_str()`]: #method.push_str
103104
///
@@ -199,8 +200,8 @@ use boxed::Box;
199200
/// ```
200201
///
201202
/// [`as_ptr()`]: #method.as_ptr
202-
/// [`len()`]: # method.len
203-
/// [`capacity()`]: # method.capacity
203+
/// [`len()`]: #method.len
204+
/// [`capacity()`]: #method.capacity
204205
///
205206
/// If a `String` has enough capacity, adding elements to it will not
206207
/// re-allocate. For example, consider this program:
@@ -480,15 +481,15 @@ impl String {
480481
/// Converts a slice of bytes to a `String`, including invalid characters.
481482
///
482483
/// A string slice ([`&str`]) is made of bytes ([`u8`]), and a slice of
483-
/// bytes ([`&[u8]`]) is made of bytes, so this function converts between
484+
/// bytes ([`&[u8]`][byteslice]) is made of bytes, so this function converts between
484485
/// the two. Not all byte slices are valid string slices, however: [`&str`]
485486
/// requires that it is valid UTF-8. During this conversion,
486487
/// `from_utf8_lossy()` will replace any invalid UTF-8 sequences with
487488
/// `U+FFFD REPLACEMENT CHARACTER`, which looks like this: �
488489
///
489490
/// [`&str`]: ../primitive.str.html
490491
/// [`u8`]: ../primitive.u8.html
491-
/// [`&[u8]`]: ../primitive.slice.html
492+
/// [byteslice]: ../primitive.slice.html
492493
///
493494
/// If you are sure that the byte slice is valid UTF-8, and you don't want
494495
/// to incur the overhead of the conversion, there is an unsafe version
@@ -1347,6 +1348,8 @@ impl FromUtf8Error {
13471348
///
13481349
/// [`Utf8Error`]: ../str/struct.Utf8Error.html
13491350
/// [`std::str`]: ../str/index.html
1351+
/// [`u8`]: ../primitive.u8.html
1352+
/// [`&str`]: ../primitive.str.html
13501353
///
13511354
/// # Examples
13521355
///

src/libcore/iter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ pub trait Iterator {
13581358
/// One of the keys to `collect()`'s power is that many things you might
13591359
/// not think of as 'collections' actually are. For example, a [`String`]
13601360
/// is a collection of [`char`]s. And a collection of [`Result<T, E>`] can
1361-
/// be thought of as single [`Result<Collection<T>, E>`]. See the examples
1361+
/// be thought of as single `Result<Collection<T>, E>`. See the examples
13621362
/// below for more.
13631363
///
13641364
/// [`String`]: ../string/struct.String.html

src/librustc_unicode/char.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ pub use tables::UNICODE_VERSION;
4646
/// This `struct` is created by the [`to_lowercase()`] method on [`char`]. See
4747
/// its documentation for more.
4848
///
49-
/// [`to_lowercase()`]: primitive.char.html#method.escape_to_lowercase
50-
/// [`char`]: primitive.char.html
49+
/// [`to_lowercase()`]: ../primitive.char.html#method.to_lowercase
50+
/// [`char`]: ../primitive.char.html
5151
#[stable(feature = "rust1", since = "1.0.0")]
5252
pub struct ToLowercase(CaseMappingIter);
5353

@@ -64,8 +64,8 @@ impl Iterator for ToLowercase {
6464
/// This `struct` is created by the [`to_uppercase()`] method on [`char`]. See
6565
/// its documentation for more.
6666
///
67-
/// [`to_uppercase()`]: primitive.char.html#method.escape_to_uppercase
68-
/// [`char`]: primitive.char.html
67+
/// [`to_uppercase()`]: ../primitive.char.html#method.to_uppercase
68+
/// [`char`]: ../primitive.char.html
6969
#[stable(feature = "rust1", since = "1.0.0")]
7070
pub struct ToUppercase(CaseMappingIter);
7171

src/libstd/io/mod.rs

+13-13
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
//! ```
113113
//!
114114
//! `BufWriter` doesn't add any new ways of writing; it just buffers every call
115-
//! to [`write()`][write]:
115+
//! to [`write()`][write()]:
116116
//!
117117
//! ```
118118
//! use std::io;
@@ -134,7 +134,7 @@
134134
//! # }
135135
//! ```
136136
//!
137-
//! [write]: trait.Write.html#tymethod.write
137+
//! [write()]: trait.Write.html#tymethod.write
138138
//!
139139
//! ## Standard input and output
140140
//!
@@ -399,7 +399,7 @@ fn read_to_end<R: Read + ?Sized>(r: &mut R, buf: &mut Vec<u8>) -> Result<usize>
399399
///
400400
/// [`File`][file]s implement `Read`:
401401
///
402-
/// [file]: ../std/fs/struct.File.html
402+
/// [file]: ../fs/struct.File.html
403403
///
404404
/// ```
405405
/// use std::io;
@@ -459,7 +459,7 @@ pub trait Read {
459459
///
460460
/// [`File`][file]s implement `Read`:
461461
///
462-
/// [file]: ../std/fs/struct.File.html
462+
/// [file]: ../fs/struct.File.html
463463
///
464464
/// ```
465465
/// use std::io;
@@ -501,7 +501,7 @@ pub trait Read {
501501
///
502502
/// [`File`][file]s implement `Read`:
503503
///
504-
/// [file]: ../std/fs/struct.File.html
504+
/// [file]: ../fs/struct.File.html
505505
///
506506
/// ```
507507
/// use std::io;
@@ -540,7 +540,7 @@ pub trait Read {
540540
///
541541
/// [`File`][file]s implement `Read`:
542542
///
543-
/// [file]: ../std/fs/struct.File.html
543+
/// [file]: ../fs/struct.File.html
544544
///
545545
/// ```
546546
/// use std::io;
@@ -600,7 +600,7 @@ pub trait Read {
600600
///
601601
/// [`File`][file]s implement `Read`:
602602
///
603-
/// [file]: ../std/fs/struct.File.html
603+
/// [file]: ../fs/struct.File.html
604604
///
605605
/// ```
606606
/// use std::io;
@@ -643,7 +643,7 @@ pub trait Read {
643643
///
644644
/// [`File`][file]s implement `Read`:
645645
///
646-
/// [file]: ../std/fs/struct.File.html
646+
/// [file]: ../fs/struct.File.html
647647
///
648648
/// ```
649649
/// use std::io;
@@ -682,7 +682,7 @@ pub trait Read {
682682
///
683683
/// [`File`][file]s implement `Read`:
684684
///
685-
/// [file]: ../std/fs/struct.File.html
685+
/// [file]: ../fs/struct.File.html
686686
///
687687
/// ```
688688
/// use std::io;
@@ -718,7 +718,7 @@ pub trait Read {
718718
///
719719
/// [`File`][file]s implement `Read`:
720720
///
721-
/// [file]: ../std/fs/struct.File.html
721+
/// [file]: ../fs/struct.File.html
722722
///
723723
/// ```
724724
/// #![feature(io)]
@@ -753,7 +753,7 @@ pub trait Read {
753753
///
754754
/// [`File`][file]s implement `Read`:
755755
///
756-
/// [file]: ../std/fs/struct.File.html
756+
/// [file]: ../fs/struct.File.html
757757
///
758758
/// ```
759759
/// use std::io;
@@ -789,7 +789,7 @@ pub trait Read {
789789
///
790790
/// [`File`][file]s implement `Read`:
791791
///
792-
/// [file]: ../std/fs/struct.File.html
792+
/// [file]: ../fs/struct.File.html
793793
///
794794
/// ```
795795
/// use std::io;
@@ -823,7 +823,7 @@ pub trait Read {
823823
///
824824
/// [`File`][file]s implement `Read`:
825825
///
826-
/// [file]: ../std/fs/struct.File.html
826+
/// [file]: ../fs/struct.File.html
827827
///
828828
/// ```
829829
/// #![feature(io)]

0 commit comments

Comments
 (0)