Skip to content
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

Rollup of 15 pull requests #33629

Closed
wants to merge 31 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
66404f3
Simplify text
dns2utf8 May 10, 2016
85e0242
Add error description for E0455
cristianoliveira May 4, 2016
7a9f4c2
Add E0500 error explanation
GuillaumeGomez May 10, 2016
5cbfa12
Fix typo in std::sync::Once documentation
Amanieu May 11, 2016
bf09a9e
Add detailed error explanation for E0505
billyevans May 6, 2016
6458b04
Cleanup formatting and wording for `std::env::temp_dir` docs.
frewsxcv May 12, 2016
a7902b1
Tighten span for E0063
sanxiyn May 12, 2016
843b174
typeck: if a private field exists, also check for a public method
birkenfeld May 2, 2016
df4fe5f
update "reason" for fnbox feature gate
durka May 12, 2016
b9fce76
fix tidy
durka May 12, 2016
91e43ac
Use the correct word in the explanation
dns2utf8 May 12, 2016
d4bff0c
doc: Fix comment in std::string::String example code
haikoschol May 12, 2016
1e901de
Add error explanations for E0374, E0375, E0376 on issue #33383
dfockler May 4, 2016
a181d2f
doc: line these comments up
tshepang May 12, 2016
10c984a
doc: use less awkward and less confusing language
tshepang May 12, 2016
226cb9c
doc: to_string not needed since we gots coercion
tshepang May 12, 2016
8176a7c
Rollup merge of #33342 - birkenfeld:issue-26472, r=jseyfried
sanxiyn May 14, 2016
9c50746
Rollup merge of #33393 - cristianoliveira:docs-error-explanation, r=s…
sanxiyn May 14, 2016
8c656ec
Rollup merge of #33415 - dfockler:master, r=steveklabnik
sanxiyn May 14, 2016
13d0d6a
Rollup merge of #33475 - billyevans:master, r=guillaumegomez
sanxiyn May 14, 2016
f28138d
Rollup merge of #33517 - sanxiyn:tight-span, r=nagisa
sanxiyn May 14, 2016
7de362a
Rollup merge of #33533 - GuillaumeGomez:add_E0500, r=steveklabnik
sanxiyn May 14, 2016
a4a7462
Rollup merge of #33534 - dns2utf8:atomic_docs, r=GuillaumeGomez
sanxiyn May 14, 2016
ec48f47
Rollup merge of #33565 - Amanieu:once_doc, r=GuillaumeGomez
sanxiyn May 14, 2016
a8a67ad
Rollup merge of #33580 - frewsxcv:temp-dir, r=alexcrichton
sanxiyn May 14, 2016
2f3f79b
Rollup merge of #33590 - durka:patch-22, r=aturon
sanxiyn May 14, 2016
fb59641
Rollup merge of #33591 - dns2utf8:systemtime_wording, r=GuillaumeGomez
sanxiyn May 14, 2016
5686aa6
Rollup merge of #33598 - haikoschol:master, r=alexcrichton
sanxiyn May 14, 2016
344b02b
Rollup merge of #33603 - tshepang:no-need, r=apasel422
sanxiyn May 14, 2016
4433903
Rollup merge of #33604 - tshepang:line-em-up, r=GuillaumeGomez
sanxiyn May 14, 2016
7ba8ec7
Rollup merge of #33605 - tshepang:less-awkward, r=steveklabnik
sanxiyn May 14, 2016
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
4 changes: 2 additions & 2 deletions src/libcollections/fmt.rs
Original file line number Diff line number Diff line change
@@ -104,8 +104,8 @@
//! octal.
//!
//! There are various parameters which do require a particular type, however.
//! Namely, the `{:.*}` syntax, which sets the number of numbers after the
//! decimal in floating-point types:
//! An example is the `{:.*}` syntax, which sets the number of decimal places
//! in floating-point types:
//!
//! ```
//! let formatted_number = format!("{:.*}", 2, 1.234567);