From bd2b470afb494365f4a49bcb24036b3a0ad9a740 Mon Sep 17 00:00:00 2001 From: John Gardner Date: Wed, 22 Dec 2021 15:27:26 +1100 Subject: [PATCH] Fix caps --- Azure-Pipelines.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Azure-Pipelines.md b/Azure-Pipelines.md index 796cbec..a116a30 100644 --- a/Azure-Pipelines.md +++ b/Azure-Pipelines.md @@ -16,9 +16,9 @@ $ shellcheck $(find $(pwd)/myscripts/ -name "*.sh") ``` -## Example Pipeline +## Example pipeline -Copy the following yaml to run ShellCheck in Azure Pipelines against all *.sh files in the current directory: +Copy the following YAML to run ShellCheck in Azure Pipelines against all `*.sh` files in the current directory: ```yaml trigger: @@ -33,4 +33,4 @@ jobs: steps: - script: shellcheck $(find $(pwd) -name "*.sh") displayName: 'Running ShellCheck' -``` \ No newline at end of file +```