Skip to content

Commit

Permalink
Fix 'Inimplemented' typo. (#3922)
Browse files Browse the repository at this point in the history
  • Loading branch information
epost committed Aug 16, 2021
1 parent b873fa7 commit 0cf5dc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/nu-errors/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ impl ShellError {
}

ProximateShellError::UntaggedRuntimeError { reason } => Diagnostic::error().with_message(format!("Error: {}", reason)),
ProximateShellError::Unimplemented { reason } => Diagnostic::error().with_message(format!("Inimplemented: {}", reason)),
ProximateShellError::Unimplemented { reason } => Diagnostic::error().with_message(format!("Unimplemented: {}", reason)),

};

Expand Down

0 comments on commit 0cf5dc1

Please sign in to comment.