Auto merge of #10408 - cdown:cdown/2023-02-26/exit_lint_sp, r=Alexendoo

exit lint: potentualy -> potentially

changelog: none
This commit is contained in:
bors 2023-02-26 20:51:54 +00:00
commit ba7fd68e87

View file

@ -11,7 +11,7 @@ declare_clippy_lint! {
///
/// ### Why is this bad?
/// Exit terminates the program at the location it is called. For unrecoverable
/// errors `panics` should be used to provide a stacktrace and potentualy other
/// errors `panics` should be used to provide a stacktrace and potentially other
/// information. A normal termination or one with an error code should happen in
/// the main function.
///