From b70fa1c7178a3b188978f9b965a0272b4e124379 Mon Sep 17 00:00:00 2001 From: Marius Ungureanu Date: Sun, 27 Mar 2022 15:23:33 +0300 Subject: [PATCH] Fix typo in the style documentation Was going through the documentation itself and found this typo just waiting to be fixed --- docs/dev/style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/style.md b/docs/dev/style.md index d64c050ccd..13da88044c 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