From 2cd1b5593d26dc6a03c20f8619187ad4b2485552 Mon Sep 17 00:00:00 2001 From: abiphone <50788307+abiphone@users.noreply.github.com> Date: Thu, 8 Dec 2022 23:49:53 +0800 Subject: [PATCH] rst restore `value` --- src/ch13-03-improving-our-io-project.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch13-03-improving-our-io-project.md b/src/ch13-03-improving-our-io-project.md index 6831e540..42a5be89 100644 --- a/src/ch13-03-improving-our-io-project.md +++ b/src/ch13-03-improving-our-io-project.md @@ -118,7 +118,7 @@ the program. We want to ignore that and get to the next value, so first we call value we want to put in the `query` field of `Config`. If `next` returns a `Some`, we use a `match` to extract the value. If it returns `None`, it means not enough arguments were given and we return early with an `Err` value. We do -the same thing for the `file_path` field. +the same thing for the `file_path` value. ### Making Code Clearer with Iterator Adaptors