We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d290849 commit 14bbd0aCopy full SHA for 14bbd0a
src/libcore/convert.rs
@@ -276,7 +276,7 @@ pub trait Into<T>: Sized {
276
pub trait From<T>: Sized {
277
/// Performs the conversion.
278
#[stable(feature = "rust1", since = "1.0.0")]
279
- fn from(t: T) -> Self;
+ fn from(_: T) -> Self;
280
}
281
282
/// An attempted conversion that consumes `self`, which may or may not be
src/librustdoc/html/highlight.rs
@@ -134,7 +134,7 @@ pub trait Writer {
134
fn string<T: Display>(&mut self,
135
text: T,
136
klass: Class,
137
- tas: Option<&TokenAndSpan>)
+ tok: Option<&TokenAndSpan>)
138
-> io::Result<()>;
139
140
0 commit comments