Skip to content

Commit

Permalink
fix comment typo, CodeSuggestion path in doc comment
Browse files Browse the repository at this point in the history
`CodeSuggestion` doesn't live in the `diagnostic` module.
  • Loading branch information
zackmdavis committed Sep 30, 2017
1 parent b7041bf commit d663003
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/librustc_errors/diagnostic.rs
Expand Up @@ -208,7 +208,7 @@ impl Diagnostic {
/// Prints out a message with a suggested edit of the code. If the suggestion is presented
/// inline it will only show the text message and not the text.
///
/// See `diagnostic::CodeSuggestion` for more information.
/// See `CodeSuggestion` for more information.
pub fn span_suggestion_short(&mut self, sp: Span, msg: &str, suggestion: String) -> &mut Self {
self.suggestions.push(CodeSuggestion {
substitution_parts: vec![Substitution {
Expand All @@ -235,7 +235,7 @@ impl Diagnostic {
/// * may look like "to do xyz, use" or "to do xyz, use abc"
/// * may contain a name of a function, variable or type, but not whole expressions
///
/// See `diagnostic::CodeSuggestion` for more information.
/// See `CodeSuggestion` for more information.
pub fn span_suggestion(&mut self, sp: Span, msg: &str, suggestion: String) -> &mut Self {
self.suggestions.push(CodeSuggestion {
substitution_parts: vec![Substitution {
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_errors/emitter.rs
Expand Up @@ -48,7 +48,7 @@ impl Emitter for EmitterWriter {
sugg.substitution_parts[0].substitutions[0].find('\n').is_none() {
let substitution = &sugg.substitution_parts[0].substitutions[0];
let msg = if substitution.len() == 0 || !sugg.show_code_when_inline {
// This substitution is only removal or we explicitely don't want to show the
// This substitution is only removal or we explicitly don't want to show the
// code inline, don't show it
format!("help: {}", sugg.msg)
} else {
Expand Down

0 comments on commit d663003

Please sign in to comment.