Fix 'Inimplemented' typo. (#3922)

This commit is contained in:
Erik Post 2021-08-16 16:17:31 +02:00 committed by GitHub
parent b873fa7a5f
commit 0cf5dc11e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)),
};