From e9b6c25df2bf179dc8d9f32f05c55aa8f7febcce Mon Sep 17 00:00:00 2001 From: Artem Pelenitsyn Date: Fri, 3 Mar 2023 15:55:14 -0500 Subject: [PATCH] Tutorial: typo (#112) --- examples/simple-grep/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple-grep/README.md b/examples/simple-grep/README.md index 6b214c3..d5458a3 100644 --- a/examples/simple-grep/README.md +++ b/examples/simple-grep/README.md @@ -347,7 +347,7 @@ A few final notes: field in `appSettings`. Iris will run the parser on the start and either throw an exception on parsing errors or parse successfully and provide the result in `CliEnv` in the `CliEnvApp`. -* Parse CLI options are stored in the `cliEnvCmd` field of the Iris environment. +* Parsed CLI options are stored in the `cliEnvCmd` field of the Iris environment. * We get this field by calling the `asksCliEnv` function. Since our `App` type derived `MonadReader` with the proper arguments, we can extract all the environment fields.