From f609d17573b720f13bab4172d1b82209253f1bb7 Mon Sep 17 00:00:00 2001 From: Yoshito Komatsu Date: Thu, 22 Oct 2015 09:17:04 +0900 Subject: [PATCH] Correct a previous patch --- src/doc/trpl/error-handling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/error-handling.md b/src/doc/trpl/error-handling.md index 994d92f1526..c7d1b0eea34 100644 --- a/src/doc/trpl/error-handling.md +++ b/src/doc/trpl/error-handling.md @@ -2057,7 +2057,7 @@ so. This can be a little clumsy, especially if you intend for the program to be used in shell scripts. So let's start by adding the flags. Like before, we need to tweak the usage -string and add a flag to the Option variable. Once we're done that, Getopts does the rest: +string and add a flag to the Option variable. Once we've done that, Getopts does the rest: ```rust,ignore ...