about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorYoshito Komatsu <ykomatsu@akaumigame.org>2015-10-22 09:17:04 +0900
committerYoshito Komatsu <ykomatsu@akaumigame.org>2015-10-22 09:17:04 +0900
commitf609d17573b720f13bab4172d1b82209253f1bb7 (patch)
treec9f6879fb20a5aa21f4aae2da4259e3355b8aaae /src
parent55796c07b894d0ce20b87bfdd731b9b7f68affad (diff)
downloadrust-f609d17573b720f13bab4172d1b82209253f1bb7.tar.gz
rust-f609d17573b720f13bab4172d1b82209253f1bb7.zip
Correct a previous patch
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/error-handling.md2
1 files changed, 1 insertions, 1 deletions
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
 ...