From fed94154f3c8b293a1f661c2dbc3579ec13540bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20Ochagav=C3=ADa?= Date: Fri, 23 Oct 2015 15:23:39 +0200 Subject: [PATCH] Fix typo --- idioms/dtor-finally.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idioms/dtor-finally.md b/idioms/dtor-finally.md index 49a8ac1..63917c1 100644 --- a/idioms/dtor-finally.md +++ b/idioms/dtor-finally.md @@ -2,7 +2,7 @@ ## Description -Rust does not provide he equivalent to `finally` blocks - code that will be +Rust does not provide the equivalent to `finally` blocks - code that will be executed no matter how a function is exited. Instead an object's destructor can be used to run code that must be run before exit.