about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-03-27 13:46:35 +0000
committerGitHub <noreply@github.com>2022-03-27 13:46:35 +0000
commit837901a4a624f4c1b1e5e7102a3dac79a217c686 (patch)
treef566a5ad2ae1fa4495b04dd9790b3ddb4eee8c61
parentf89529eb478ac471553a0d532809eea555223164 (diff)
parentb70fa1c7178a3b188978f9b965a0272b4e124379 (diff)
downloadrust-837901a4a624f4c1b1e5e7102a3dac79a217c686.tar.gz
rust-837901a4a624f4c1b1e5e7102a3dac79a217c686.zip
Merge #11832
11832: Fix typo in the style documentation r=lnicola a=Therzok

Was going through the documentation itself and found this typo just waiting to be fixed

Co-authored-by: Marius Ungureanu <therzok@gmail.com>
-rw-r--r--docs/dev/style.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/style.md b/docs/dev/style.md
index d64c050ccd5..13da88044c1 100644
--- a/docs/dev/style.md
+++ b/docs/dev/style.md
@@ -1036,7 +1036,7 @@ Having the result type specified up-front helps with understanding what the chai
 
 ## Helper Functions
 
-Avoid creating singe-use helper functions:
+Avoid creating single-use helper functions:
 
 ```rust
 // GOOD