From 04f095cf6829ee4dcac74eff5430521512211fa2 Mon Sep 17 00:00:00 2001 From: Bulat Musin <9249387+bmusin@users.noreply.github.com> Date: Thu, 11 Jan 2018 10:22:26 +0300 Subject: [PATCH] fix typo Inserted dash: "nitty-gritty". --- first-edition/src/error-handling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/first-edition/src/error-handling.md b/first-edition/src/error-handling.md index 02bd67587..0aa13e76c 100644 --- a/first-edition/src/error-handling.md +++ b/first-edition/src/error-handling.md @@ -1643,7 +1643,7 @@ sure to add `extern crate csv;` to the top of your file.) use std::fs::File; // This struct represents the data in each row of the CSV file. -// Type based decoding absolves us of a lot of the nitty gritty error +// Type based decoding absolves us of a lot of the nitty-gritty error // handling, like parsing strings as integers or floats. #[derive(Debug, RustcDecodable)] struct Row {