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 14 pull requests #78920

Merged
merged 33 commits into from
Nov 11, 2020
Merged
Changes from 3 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
20e032e
Make it more clear when complaining about async fn's return types
guswynn Sep 15, 2020
68d2cd5
Use check-pass instead of build-pass in regions ui test suite
sasurau4 Oct 30, 2020
89c3582
Assert that a return place is not used for indexing during integration
tmiasko Nov 7, 2020
8c7046e
remove needs_drop
the8472 Nov 7, 2020
bf66988
Collapse all uses of `target.options.foo` into `target.foo`
petrochenkov Nov 8, 2020
dc004d4
rustc_target: Rename some target options to avoid tautology
petrochenkov Nov 8, 2020
7f91175
Address review comments
petrochenkov Nov 8, 2020
f173957
Fix links to stabilized versions of some intrinsics
tmiasko Nov 9, 2020
21f44fb
comment attribution fix
Nov 9, 2020
2633e93
Clarified description of write! macro
cyqsimon Nov 9, 2020
868aa89
add regression test for #78892
SNCPlay42 Nov 9, 2020
bf982a5
Bad grammar
cyqsimon Nov 9, 2020
70e175b
Add missing newline to error message of the default OOM hook
Nov 9, 2020
0242f96
Add comments to explain memory usage optimization
camelid Nov 8, 2020
7beb0da
(rustdoc) [src] link for types defined by macros shows invocation
liketechnik Nov 9, 2020
aaf06d8
add nll compare mode stderr file
guswynn Nov 10, 2020
6be4847
Update src/test/ui/issues/issue-76547.rs
tmandry Nov 10, 2020
857dd8b
Add macro test for min-const-generics
JulianKnodt Nov 9, 2020
d757ecd
use check-pass instead of build-pass in consts ui test suits
sasurau4 Nov 10, 2020
9596e34
Rollup merge of #76765 - guswynn:async_return, r=tmandry
jonas-schievink Nov 10, 2020
8c88c03
Rollup merge of #78574 - sasurau4:test/check-pass-regions, r=jyn514
jonas-schievink Nov 10, 2020
3a2cbe6
Rollup merge of #78669 - sasurau4:test/check-pass-consts, r=jyn514
jonas-schievink Nov 10, 2020
9c48688
Rollup merge of #78847 - tmiasko:inline-return-place, r=matthewjasper
jonas-schievink Nov 10, 2020
e15fee9
Rollup merge of #78854 - the8472:workaround-normalization-regression-…
jonas-schievink Nov 10, 2020
105f4b8
Rollup merge of #78875 - petrochenkov:cleantarg, r=Mark-Simulacrum
jonas-schievink Nov 10, 2020
a08e7af
Rollup merge of #78887 - camelid:dataflow-state-decl, r=jonas-schievink
jonas-schievink Nov 10, 2020
1952f04
Rollup merge of #78890 - o752d:patch-2, r=jyn514
jonas-schievink Nov 10, 2020
87ecb0a
Rollup merge of #78896 - cyqsimon:master, r=m-ou-se
jonas-schievink Nov 10, 2020
354098c
Rollup merge of #78897 - hyd-dev:alloc-error-hook-newline, r=m-ou-se
jonas-schievink Nov 10, 2020
6b27f0d
Rollup merge of #78898 - SNCPlay42:issue-78892, r=Mark-Simulacrum
jonas-schievink Nov 10, 2020
a5f549e
Rollup merge of #78908 - liketechnik:fix_macro_expand_src_link, r=jyn514
jonas-schievink Nov 10, 2020
42fae6b
Rollup merge of #78910 - tmiasko:intrinsics-link, r=jyn514
jonas-schievink Nov 10, 2020
fa4d0f2
Rollup merge of #78912 - JulianKnodt:mcg_macro, r=lcnr
jonas-schievink Nov 10, 2020
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
2 changes: 1 addition & 1 deletion library/core/src/macros/mod.rs
Original file line number Diff line number Diff line change
@@ -318,7 +318,7 @@ macro_rules! r#try {

/// Writes formatted data into a buffer.
///
/// This macro accepts a format string, a list of arguments, and a 'writer'. Arguments will be
/// This macro accepts a 'writer', a format string, and a list of arguments. Arguments will be
/// formatted according to the specified format string and the result will be passed to the writer.
/// The writer may be any value with a `write_fmt` method; generally this comes from an
/// implementation of either the [`fmt::Write`] or the [`io::Write`] trait. The macro