From 607c70e50f6ed1827dadd548e367f02d34213f12 Mon Sep 17 00:00:00 2001 From: Marko Lalic Date: Thu, 6 Aug 2015 11:57:55 +0200 Subject: [PATCH] TRPL/lifetimes.md: Fix typo lifteimes -> lifetimes --- src/doc/trpl/lifetimes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/lifetimes.md b/src/doc/trpl/lifetimes.md index bdb22fb4a69..3fe8ad0cfe2 100644 --- a/src/doc/trpl/lifetimes.md +++ b/src/doc/trpl/lifetimes.md @@ -81,7 +81,7 @@ We previously talked a little about [function syntax][functions], but we didn’ discuss the `<>`s after a function’s name. A function can have ‘generic parameters’ between the `<>`s, of which lifetimes are one kind. We’ll discuss other kinds of generics [later in the book][generics], but for now, let’s -just focus on the lifteimes aspect. +just focus on the lifetimes aspect. [functions]: functions.html [generics]: generics.html