From 9a2e6dbf1797ea99bcbc55ac9ef1f896ff0f197e Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Thu, 1 Jun 2017 10:03:43 +0200 Subject: [PATCH] Slighty better rewording --- second-edition/src/ch19-04-advanced-types.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/second-edition/src/ch19-04-advanced-types.md b/second-edition/src/ch19-04-advanced-types.md index af3065ea4..c03042b3d 100644 --- a/second-edition/src/ch19-04-advanced-types.md +++ b/second-edition/src/ch19-04-advanced-types.md @@ -164,9 +164,9 @@ another `Result`, which means we can use any methods that work on ### The Never Type, `!`, that Never Returns Rust has a special type named `!`. In type theory lingo, it's called the -*bottom type*, but we prefer the name *never*. The name describes what it does: -it stands in the place of the return type when a function will never return. -For example: +*bottom type*, but we prefer to call it the *never type*. The name describes +what it does: it stands in the place of the return type when a function will +never return. For example: ```rust,ignore fn bar() -> ! {