From 3a33253ae2e41a6632be7bb6b2f8ad0d364fb0f2 Mon Sep 17 00:00:00 2001 From: Gil Forcada Codinachs Date: Tue, 26 May 2020 03:05:23 +0200 Subject: [PATCH] Typo (#11) * Typo * Update src/tutorial/cli-args.md Co-authored-by: Pascal Hertleif Co-authored-by: Pascal Hertleif --- src/tutorial/cli-args.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tutorial/cli-args.md b/src/tutorial/cli-args.md index 3f196681..226d518e 100644 --- a/src/tutorial/cli-args.md +++ b/src/tutorial/cli-args.md @@ -58,7 +58,7 @@ We haven't talked about any default values, so we expect our users to always provide two values. Furthermore, we can say a bit about their types: The pattern is expected to be a string, -while the second argument is expect to be path to a file. +while the second argument is expected to be a path to a file. In Rust, it is very common to structure programs around the data they deal with so this way of looking at CLI arguments fits very well.