From 5a899e232964b195b937c5010ffd338ba607f69d Mon Sep 17 00:00:00 2001 From: Kewin Szlezingier <77052270+kewinzaq1@users.noreply.github.com> Date: Sun, 18 Jun 2023 18:06:29 +0200 Subject: [PATCH] fix: typo --- 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 e08ffb3..13eaa13 100644 --- a/en/src/lifetime/basic.md +++ b/en/src/lifetime/basic.md @@ -324,7 +324,7 @@ For a more comprehensive understanding of elision, please see [lifetime elision] ```rust,editable /* Remove all the lifetimes that can be elided */ -fn nput<'a>(x: &'a i32) { +fn input<'a>(x: &'a i32) { println!("`annotated_input`: {}", x); }