about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-02-26 20:51:54 +0000
committerbors <bors@rust-lang.org>2023-02-26 20:51:54 +0000
commitba7fd68e87cd13ece77baa83684396c8b9cbc633 (patch)
treeb36819bb7ec5050e045a94ac26c8b2420804026a
parent3d193fa17a7df3256d58b841a2df92af1cbdbea4 (diff)
parent5f3df6cfce616664177111df50f1e53c309cfbad (diff)
downloadrust-ba7fd68e87cd13ece77baa83684396c8b9cbc633.tar.gz
rust-ba7fd68e87cd13ece77baa83684396c8b9cbc633.zip
Auto merge of #10408 - cdown:cdown/2023-02-26/exit_lint_sp, r=Alexendoo
exit lint: potentualy -> potentially

changelog: none
-rw-r--r--clippy_lints/src/exit.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/exit.rs b/clippy_lints/src/exit.rs
index 9c8b0d076df..8ba6a9e4876 100644
--- a/clippy_lints/src/exit.rs
+++ b/clippy_lints/src/exit.rs
@@ -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.
     ///