From c594e378a3271e746fc2be349de8db3f13f03da9 Mon Sep 17 00:00:00 2001 From: Sunface Date: Wed, 7 Jun 2023 09:06:56 +0800 Subject: [PATCH] Update en/src/lifetime/basic.md --- en/src/lifetime/basic.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/src/lifetime/basic.md b/en/src/lifetime/basic.md index 8b08142..e08ffb3 100644 --- a/en/src/lifetime/basic.md +++ b/en/src/lifetime/basic.md @@ -314,7 +314,7 @@ fn main() {} ``` ## Elision -Some lifetime patterns are so common that the borrow checker will allow you to omit them to save typing and to improve readability. +Some lifetime patterns are so common that borrow checker will allow you to omit them to save typing and improve readability. This is known as **Elision**. Elision exist in Rust only because these patterns are common.