summaryrefslogtreecommitdiff
path: root/doc/ale-openapi.txt
diff options
context:
space:
mode:
authorHoracio Sanson <horacio@allm.inc>2021-01-22 23:51:29 +0900
committerHoracio Sanson <horacio@allm.inc>2021-01-22 23:51:29 +0900
commit9bc4b468c20e91350cf1a6d3739f91f504e230ed (patch)
tree970d8a2062372ee662b0e25c7538f4fc1135fcce /doc/ale-openapi.txt
parent4aa11cbc055ccbc18d2d48a944566b08d6815583 (diff)
downloadale-9bc4b468c20e91350cf1a6d3739f91f504e230ed.zip
Fix linter error
Diffstat (limited to 'doc/ale-openapi.txt')
-rw-r--r--doc/ale-openapi.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ale-openapi.txt b/doc/ale-openapi.txt
index a1137ed8..1fc41add 100644
--- a/doc/ale-openapi.txt
+++ b/doc/ale-openapi.txt
@@ -2,7 +2,7 @@
ALE OpenApi Integration *ale-openapi-options*
===============================================================================
-ibm-validator *ale-openapi-ibm-validator*
+ibm_validator *ale-openapi-ibm-validator*
Website: https://github.com/IBM/openapi-validator
@@ -25,12 +25,12 @@ configured for openapi and yaml files or openapi and json files respectively.
For example setting filetype to |openapi.yaml| on a buffer and the following
|g:ale_linters| configuration will enable linting of openapi files using both
-|ibm-validator| and |yamlint|:
+|ibm_validator| and |yamlint|:
>
let g:ale_linters = {
\ 'yaml': ['yamllint'],
- \ 'openapi': ['ibm-validator']
+ \ 'openapi': ['ibm_validator']
\}
<