about summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorMarius Ungureanu <therzok@gmail.com>2022-03-27 15:23:33 +0300
committerGitHub <noreply@github.com>2022-03-27 15:23:33 +0300
commitb70fa1c7178a3b188978f9b965a0272b4e124379 (patch)
treef566a5ad2ae1fa4495b04dd9790b3ddb4eee8c61 /docs
parentf89529eb478ac471553a0d532809eea555223164 (diff)
downloadrust-b70fa1c7178a3b188978f9b965a0272b4e124379.tar.gz
rust-b70fa1c7178a3b188978f9b965a0272b4e124379.zip
Fix typo in the style documentation
Was going through the documentation itself and found this typo just waiting to be fixed
Diffstat (limited to 'docs')
-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