rust/library/alloc/src
Yuki Okushi 2cc7da6f95
Rollup merge of #75424 - joseluis:patch-1, r=joshtriplett
fix wrong word in documentation

Change "two" to "three", since there are three significantly different things printed below that sentence:

---

While these:
```rust
println!("{}, `{name:.*}` has 3 fractional digits", "Hello", 3, name=1234.56);
println!("{}, `{name:.*}` has 3 characters", "Hello", 3, name="1234.56");
println!("{}, `{name:>8.*}` has 3 right-aligned characters", "Hello", 3, name="1234.56");
```

print two significantly different things:

``` rust
Hello, `1234.560` has 3 fractional digits
Hello, `123` has 3 characters
Hello, `     123` has 3 right-aligned characters
```
---
[`https://doc.rust-lang.org/std/fmt/#precision`](https://doc.rust-lang.org/std/fmt/#precision)
2020-08-12 12:07:21 +09:00
..
alloc Replace Memoryblock with NonNull<[u8]> 2020-08-04 18:03:34 +02:00
collections BTreeMap: better distinguish the root holder from the root node 2020-08-09 13:43:13 +02:00
prelude mv std libs to library/ 2020-07-27 19:51:13 -05:00
raw_vec Replace Memoryblock with NonNull<[u8]> 2020-08-04 18:03:34 +02:00
rc mv std libs to library/ 2020-07-27 19:51:13 -05:00
sync mv std libs to library/ 2020-07-27 19:51:13 -05:00
alloc.rs Replace Memoryblock with NonNull<[u8]> 2020-08-04 18:03:34 +02:00
borrow.rs mv std libs to library/ 2020-07-27 19:51:13 -05:00
boxed.rs Replace Memoryblock with NonNull<[u8]> 2020-08-04 18:03:34 +02:00
fmt.rs word change 2020-08-11 22:33:11 +02:00
lib.rs Replace Memoryblock with NonNull<[u8]> 2020-08-04 18:03:34 +02:00
macros.rs mv std libs to library/ 2020-07-27 19:51:13 -05:00
raw_vec.rs Rollup merge of #75151 - pickfire:patch-4, r=LukasKalbertodt 2020-08-09 06:41:18 +09:00
rc.rs Replace Memoryblock with NonNull<[u8]> 2020-08-04 18:03:34 +02:00
slice.rs add tracking issue 2020-08-01 07:49:24 +02:00
str.rs mv std libs to library/ 2020-07-27 19:51:13 -05:00
string.rs Explain why inline default ToString impl 2020-07-29 07:38:06 +00:00
sync.rs Replace Memoryblock with NonNull<[u8]> 2020-08-04 18:03:34 +02:00
task.rs mv std libs to library/ 2020-07-27 19:51:13 -05:00
tests.rs mv std libs to library/ 2020-07-27 19:51:13 -05:00
vec.rs Fix range term in alloc vec doc 2020-08-11 23:57:13 +08:00