From 6847383d6e7e37391e49de9ccc5185f8fdad4330 Mon Sep 17 00:00:00 2001 From: Chris Gavin Date: Mon, 5 Oct 2020 12:29:25 +0100 Subject: [PATCH] Fix a copy-and-paste mistake in the help for the Actions workflow error message command. (#15883) --- .../actions/reference/workflow-commands-for-github-actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/reference/workflow-commands-for-github-actions.md b/content/actions/reference/workflow-commands-for-github-actions.md index bf1a525d35..e7c98d0f11 100644 --- a/content/actions/reference/workflow-commands-for-github-actions.md +++ b/content/actions/reference/workflow-commands-for-github-actions.md @@ -150,7 +150,7 @@ echo "::warning file=app.js,line=1,col=5::Missing semicolon" `::error file={name},line={line},col={col}::{message}` -Creates an error message and prints the message to the log. You can optionally provide a filename (`file`), line number (`line`), and column (`col`) number where the warning occurred. +Creates an error message and prints the message to the log. You can optionally provide a filename (`file`), line number (`line`), and column (`col`) number where the error occurred. #### Example