From 9c3a5bc026fa22053d82b2a488cc5d5cde959555 Mon Sep 17 00:00:00 2001 From: king6cong Date: Tue, 26 Mar 2019 20:32:36 +0800 Subject: [PATCH] Make sentence more complete --- src/ch12-00-an-io-project.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ch12-00-an-io-project.md b/src/ch12-00-an-io-project.md index 549d5da70f..f36e358202 100644 --- a/src/ch12-00-an-io-project.md +++ b/src/ch12-00-an-io-project.md @@ -16,8 +16,8 @@ in that file that contain the string argument, and prints those lines. Along the way, we’ll show how to make our command line tool use features of the terminal that many command line tools use. We’ll read the value of an environment variable to allow the user to configure the behavior of our tool. -We’ll also print to the standard error console stream (`stderr`) instead of -standard output (`stdout`), so, for example, the user can redirect successful +We’ll also print error messages to the standard error console stream (`stderr`) instead +of standard output (`stdout`), so, for example, the user can redirect successful output to a file while still seeing error messages onscreen. One Rust community member, Andrew Gallant, has already created a fully