Skip to content

Commit 716394d

Browse files
committed
Auto merge of rust-lang#84862 - GuillaumeGomez:rollup-cbc93h4, r=GuillaumeGomez
Rollup of 6 pull requests Successful merges: - rust-lang#84835 (Add link to Issue rust-lang#34202 in udp docs) - rust-lang#84852 (Change librustdoc write!(.. \n) to writeln!(..); fix comment grammar) - rust-lang#84854 (use double quotes and full path for E0761) - rust-lang#84856 (Correct stability of ErrorKind::OutOfMemory) - rust-lang#84858 (Fix stability attributes of byte-to-string specialization) - rust-lang#84860 (Link to MCP from target tier policy) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents c825bc4 + 2d789b6 commit 716394d

File tree

10 files changed

+24
-22
lines changed

10 files changed

+24
-22
lines changed

compiler/rustc_expand/src/module.rs

+6-8
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub enum ModError<'a> {
3737
CircularInclusion(Vec<PathBuf>),
3838
ModInBlock(Option<Ident>),
3939
FileNotFound(Ident, PathBuf),
40-
MultipleCandidates(Ident, String, String),
40+
MultipleCandidates(Ident, PathBuf, PathBuf),
4141
ParserError(DiagnosticBuilder<'a>),
4242
}
4343

@@ -220,9 +220,7 @@ pub fn default_submod_path<'a>(
220220
dir_ownership: DirOwnership::Owned { relative: None },
221221
}),
222222
(false, false) => Err(ModError::FileNotFound(ident, default_path)),
223-
(true, true) => {
224-
Err(ModError::MultipleCandidates(ident, default_path_str, secondary_path_str))
225-
}
223+
(true, true) => Err(ModError::MultipleCandidates(ident, default_path, secondary_path)),
226224
}
227225
}
228226

@@ -264,15 +262,15 @@ impl ModError<'_> {
264262
));
265263
err
266264
}
267-
ModError::MultipleCandidates(ident, default_path_short, secondary_path_short) => {
265+
ModError::MultipleCandidates(ident, default_path, secondary_path) => {
268266
let mut err = struct_span_err!(
269267
diag,
270268
span,
271269
E0761,
272-
"file for module `{}` found at both {} and {}",
270+
"file for module `{}` found at both \"{}\" and \"{}\"",
273271
ident,
274-
default_path_short,
275-
secondary_path_short,
272+
default_path.display(),
273+
secondary_path.display(),
276274
);
277275
err.help("delete or rename one of them to remove the ambiguity");
278276
err

library/alloc/src/string.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2288,7 +2288,7 @@ impl ToString for char {
22882288
}
22892289
}
22902290

2291-
#[stable(feature = "u8_to_string_specialization", since = "1.999.0")]
2291+
#[stable(feature = "u8_to_string_specialization", since = "1.54.0")]
22922292
impl ToString for u8 {
22932293
#[inline]
22942294
fn to_string(&self) -> String {
@@ -2307,7 +2307,7 @@ impl ToString for u8 {
23072307
}
23082308
}
23092309

2310-
#[stable(feature = "i8_to_string_specialization", since = "1.999.0")]
2310+
#[stable(feature = "i8_to_string_specialization", since = "1.54.0")]
23112311
impl ToString for i8 {
23122312
#[inline]
23132313
fn to_string(&self) -> String {

library/std/src/io/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ pub enum ErrorKind {
189189

190190
/// An operation could not be completed, because it failed
191191
/// to allocate enough memory.
192-
#[stable(feature = "out_of_memory_error", since = "1.53.0")]
192+
#[stable(feature = "out_of_memory_error", since = "1.54.0")]
193193
OutOfMemory,
194194
}
195195

library/std/src/net/udp.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ impl UdpSocket {
159159
/// This will return an error when the IP version of the local socket
160160
/// does not match that returned from [`ToSocketAddrs`].
161161
///
162-
/// See issue #34202 for more details.
162+
/// See [Issue #34202] for more details.
163163
///
164164
/// # Examples
165165
///
@@ -169,6 +169,8 @@ impl UdpSocket {
169169
/// let socket = UdpSocket::bind("127.0.0.1:34254").expect("couldn't bind to address");
170170
/// socket.send_to(&[0; 10], "127.0.0.1:4242").expect("couldn't send data");
171171
/// ```
172+
///
173+
/// [Issue #34202]: https://github.com/rust-lang/rust/issues/34202
172174
#[stable(feature = "rust1", since = "1.0.0")]
173175
pub fn send_to<A: ToSocketAddrs>(&self, buf: &[u8], addr: A) -> io::Result<usize> {
174176
match addr.to_socket_addrs()?.next() {

src/doc/rustc/src/target-tier-policy.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ place minimal requirements on the introduction of targets.
102102

103103
A proposed new tier 3 target must be reviewed and approved by a member of the
104104
compiler team based on these requirements. The reviewer may choose to gauge
105-
broader compiler team consensus via a Major Change Proposal (MCP).
105+
broader compiler team consensus via a [Major Change Proposal (MCP)][MCP].
106106

107107
A proposed target or target-specific patch that substantially changes code
108108
shared with other targets (not just target-specific code) must be reviewed and
@@ -223,8 +223,8 @@ patches that fail to build on a target. Thus, we place requirements that ensure
223223
the target will not block forward progress of the Rust project.
224224

225225
A proposed new tier 2 target must be reviewed and approved by the compiler team
226-
based on these requirements. Such review and approval may occur via a Major
227-
Change Proposal (MCP).
226+
based on these requirements. Such review and approval may occur via a [Major
227+
Change Proposal (MCP)][MCP].
228228

229229
In addition, the infrastructure team must approve the integration of the target
230230
into Continuous Integration (CI), and the tier 2 CI-related requirements. This
@@ -391,7 +391,7 @@ development platform, not just a compilation target.
391391

392392
A proposed new tier 2 target with host tools must be reviewed and approved by
393393
the compiler team based on these requirements. Such review and approval may
394-
occur via a Major Change Proposal (MCP).
394+
occur via a [Major Change Proposal (MCP)][MCP].
395395

396396
In addition, the infrastructure team must approve the integration of the
397397
target's host tools into Continuous Integration (CI), and the CI-related
@@ -648,3 +648,5 @@ for demotion of a tier 1 target (with or without host tools) requires a full
648648
RFC process, with approval by the compiler and release teams. Any such proposal
649649
will be communicated widely to the Rust community, both when initially proposed
650650
and before being dropped from a stable release.
651+
652+
[MCP]: https://forge.rust-lang.org/compiler/mcp.html

src/librustdoc/html/highlight.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ crate fn render_with_highlighting(
4646
}
4747

4848
fn write_header(out: &mut Buffer, class: Option<&str>) {
49-
write!(out, "<div class=\"example-wrap\"><pre class=\"rust {}\">\n", class.unwrap_or_default());
49+
writeln!(out, "<div class=\"example-wrap\"><pre class=\"rust {}\">", class.unwrap_or_default());
5050
}
5151

5252
fn write_code(out: &mut Buffer, src: &str, edition: Edition) {
@@ -62,7 +62,7 @@ fn write_code(out: &mut Buffer, src: &str, edition: Edition) {
6262
}
6363

6464
fn write_footer(out: &mut Buffer, playground_button: Option<&str>) {
65-
write!(out, "</pre>{}</div>\n", playground_button.unwrap_or_default());
65+
writeln!(out, "</pre>{}</div>", playground_button.unwrap_or_default());
6666
}
6767

6868
/// How a span of text is classified. Mostly corresponds to token kinds.

src/librustdoc/html/render/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ fn attributes(it: &clean::Item) -> Vec<String> {
964964
// a whitespace prefix and newline.
965965
fn render_attributes_in_pre(w: &mut Buffer, it: &clean::Item, prefix: &str) {
966966
for a in attributes(it) {
967-
write!(w, "{}{}\n", prefix, a);
967+
writeln!(w, "{}{}", prefix, a);
968968
}
969969
}
970970

src/librustdoc/html/sources.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ fn print_src(buf: &mut Buffer, s: &str, edition: Edition) {
177177
}
178178
buf.write_str("<pre class=\"line-numbers\">");
179179
for i in 1..=lines {
180-
write!(buf, "<span id=\"{0}\">{0:1$}</span>\n", i, cols);
180+
writeln!(buf, "<span id=\"{0}\">{0:1$}</span>", i, cols);
181181
}
182182
buf.write_str("</pre>");
183183
highlight::render_with_highlighting(s, buf, None, None, None, edition);

src/librustdoc/theme.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ crate struct CssPath {
1717
// This PartialEq implementation IS NOT COMMUTATIVE!!!
1818
//
1919
// The order is very important: the second object must have all first's rules.
20-
// However, the first doesn't require to have all second's rules.
20+
// However, the first is not required to have all of the second's rules.
2121
impl PartialEq for CssPath {
2222
fn eq(&self, other: &CssPath) -> bool {
2323
if self.name != other.name {

src/test/ui/modules_and_files_visibility/mod_file_disambig.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0761]: file for module `mod_file_disambig_aux` found at both mod_file_disambig_aux.rs and mod_file_disambig_aux/mod.rs
1+
error[E0761]: file for module `mod_file_disambig_aux` found at both "$DIR/mod_file_disambig_aux.rs" and "$DIR/mod_file_disambig_aux/mod.rs"
22
--> $DIR/mod_file_disambig.rs:1:1
33
|
44
LL | mod mod_file_disambig_aux;

0 commit comments

Comments
 (0)