Fix caps

John Gardner
2021-12-22 15:27:26 +11:00
parent 6bd10b3fb3
commit bd2b470afb

@@ -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'
```
```