From d97117b583cd17128ad8ad13f0a57547482788ee Mon Sep 17 00:00:00 2001 From: Philippe Parisot <22180342+PhilParisot@users.noreply.github.com> Date: Sat, 18 Jun 2022 14:02:33 -0400 Subject: [PATCH] Small typo, fixed compileable -> compilable I searched online, it didn't look like compileable was recognized tho it was used in places. Sources: https://en.wiktionary.org/wiki/compilable https://theopendictionary.com/word/compileable/ --- src/testing/doc_testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testing/doc_testing.md b/src/testing/doc_testing.md index cdd32cd01f..2fac440f92 100644 --- a/src/testing/doc_testing.md +++ b/src/testing/doc_testing.md @@ -81,7 +81,7 @@ and `unwrap` it in hidden `main`. Sounds complicated? Here's an example: /// Using hidden `try_main` in doc tests. /// /// ``` -/// # // hidden lines start with `#` symbol, but they're still compileable! +/// # // hidden lines start with `#` symbol, but they're still compilable! /// # fn try_main() -> Result<(), String> { // line that wraps the body shown in doc /// let res = try::try_div(10, 2)?; /// # Ok(()) // returning from try_main