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 +```