From 33f8e0570e587aa2e76345c9436802025b3b7fed Mon Sep 17 00:00:00 2001 From: fkmy Date: Wed, 13 Nov 2024 11:12:51 +0900 Subject: [PATCH] Fix some typos in README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7ace655..3f5c425 100644 --- a/README.md +++ b/README.md @@ -176,7 +176,7 @@ gotestsum --post-run-command notify **Example: command with flags** -Possitional arguments or command line flags can be passed to the `--post-run-command` by +Positional arguments or command line flags can be passed to the `--post-run-command` by quoting the whole command. ``` @@ -273,11 +273,11 @@ stdout and stderr output: non-JSON output, you can use `--ignore-non-json-output-lines` (added in version 1.7.0) to ignore non-JSON lines and write them to `gotestsum`'s stderr instead. * Any stderr produced by the script will be considered an error (this behaviour - is necessary because package build errors are only reported by writting to + is necessary because package build errors are only reported by writing to stderr, not the `test2json` stdout). Any stderr produced by tests is not considered an error (it will be in the `test2json` stdout). -**Example: accept intput from stdin** +**Example: accept input from stdin** ``` cat out.json | gotestsum --raw-command -- cat ```