From 447581198440fc68bf0072ba42ed0f12bf6d3d85 Mon Sep 17 00:00:00 2001 From: Bulat Musin <9249387+bmusin@users.noreply.github.com> Date: Thu, 11 Jan 2018 09:38:09 +0300 Subject: [PATCH] fix typo --- first-edition/src/error-handling.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/first-edition/src/error-handling.md b/first-edition/src/error-handling.md index 02bd6758..c7c286cc 100644 --- a/first-edition/src/error-handling.md +++ b/first-edition/src/error-handling.md @@ -647,9 +647,9 @@ a bit nicer to deal with, since it will show your message instead of My advice boils down to this: use good judgment. There's a reason why the words “never do X” or “Y is considered harmful” don't appear in my writing. There are -trade offs to all things, and it is up to you as the programmer to determine +trade-offs to all things, and it is up to you as the programmer to determine what is acceptable for your use cases. My goal is only to help you evaluate -trade offs as accurately as possible. +trade-offs as accurately as possible. Now that we've covered the basics of error handling in Rust, and explained unwrapping, let's start exploring more of the standard