Skip to content

Commit

Permalink
VSChina#269 - Fix ansible modules URL
Browse files Browse the repository at this point in the history
VSChina#269 - Fix ansible modules URL
  • Loading branch information
goniomdq authored Oct 5, 2020
1 parent 2201b21 commit 43e249c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/services/yamlHover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class YAMLHover {

private createHover(content: string, range: Range): Hover {
let result: Hover = {
contents: `module, documentation at http://docs.ansible.com/ansible/${content}_module.html`,
contents: `module, documentation at http://docs.ansible.com/ansible/modules/${content}_module.html`,
range: range
}
return result;
Expand Down Expand Up @@ -128,4 +128,4 @@ interface JSONData {
modules: Modules;
directives: Directives;
lookup_plugins: LookupPlugins;
}
}

0 comments on commit 43e249c

Please sign in to comment.