From a4d242680b561d5bbf83763576cdd16e392accf7 Mon Sep 17 00:00:00 2001 From: Steve Russo Date: Thu, 6 Jul 2023 16:31:26 -0400 Subject: [PATCH] docs: fix two minor typos in usage.md (#1254) --- docs/docs/usage.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/docs/usage.md b/docs/docs/usage.md index 3c1f35e7..a9fe7044 100644 --- a/docs/docs/usage.md +++ b/docs/docs/usage.md @@ -1260,7 +1260,8 @@ tasks: ## Warning Prompts -Warning Prompts to prompt a user for confirmation before a task is executed. +Warning Prompts are used to prompt a user for confirmation before a task is +executed. Below is an example using `prompt` with a dangerous command, that is called between two safe commands: @@ -1314,7 +1315,7 @@ automatically confirmed, and no prompts will be shown. :::caution Tasks with prompts always fail by default on non-terminal environments, like a -CI, where an `stdin` won't be available for the user to answer. In cases like, +CI, where an `stdin` won't be available for the user to answer. In those cases, use `--yes` (`-y`) to force all tasks with a prompt to run. :::