about summary refs log tree commit diff
path: root/clippy_dev/src
diff options
context:
space:
mode:
authorwhodi <whodi@pop-os.localdomain>2022-04-15 15:00:44 -0400
committerManish Goregaokar <manishsmail@gmail.com>2022-04-15 14:19:00 -0700
commit2be7ad5b39b182e7e2ce6cbe2c49a259288cd464 (patch)
treec648d8205a637938aa8d82644f67a3d1de12aa32 /clippy_dev/src
parentfb1934b63ff692870e9793ea60624d3ab2736d05 (diff)
downloadrust-2be7ad5b39b182e7e2ce6cbe2c49a259288cd464.tar.gz
rust-2be7ad5b39b182e7e2ce6cbe2c49a259288cd464.zip
initialization misspell
Diffstat (limited to 'clippy_dev/src')
-rw-r--r--clippy_dev/src/setup/git_hook.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_dev/src/setup/git_hook.rs b/clippy_dev/src/setup/git_hook.rs
index ad4b96f7ff3..3fbb77d5923 100644
--- a/clippy_dev/src/setup/git_hook.rs
+++ b/clippy_dev/src/setup/git_hook.rs
@@ -18,7 +18,7 @@ pub fn install_hook(force_override: bool) {
 
     // So a little bit of a funny story. Git on unix requires the pre-commit file
     // to have the `execute` permission to be set. The Rust functions for modifying
-    // these flags doesn't seem to work when executed with normal user permissions. 
+    // these flags doesn't seem to work when executed with normal user permissions.
     //
     // However, there is a little hack that is also being used by Rust itself in their
     // setup script. Git saves the `execute` flag when syncing files. This means