about summary refs log tree commit diff
diff options
context:
space:
mode:
authorElijah Potter <me@elijahpotter.dev>2024-06-15 13:55:16 -0600
committerElijah Potter <me@elijahpotter.dev>2024-06-15 13:59:35 -0600
commitbcc7b0e7000ccd13736e6d9f039858fa2f919e28 (patch)
tree75abc114f18c91f6714d85015fd1bbecfb20e691
parent0dc265ff82fe861f673f20003e4370df52f50ff3 (diff)
downloadrust-bcc7b0e7000ccd13736e6d9f039858fa2f919e28.tar.gz
rust-bcc7b0e7000ccd13736e6d9f039858fa2f919e28.zip
Fix minor typo
-rw-r--r--book/src/usage.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/src/usage.md b/book/src/usage.md
index 36448e4cccf..7a0be6994fe 100644
--- a/book/src/usage.md
+++ b/book/src/usage.md
@@ -36,7 +36,7 @@ You can configure lint levels on the command line by adding
 cargo clippy -- -Aclippy::style -Wclippy::double_neg -Dclippy::perf
 ```
 
-For [CI] all warnings can be elevated to errors which will inturn fail
+For [CI] all warnings can be elevated to errors which will in turn fail
 the build and cause Clippy to exit with a code other than `0`.
 
 ```