Merge pull request #11304 from nepella/fix-typo

Ansible docs: Fix misplaced brace in example.
This commit is contained in:
Brian Cain 2020-01-08 14:21:30 -08:00 committed by GitHub
commit 2ae6b37c9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -126,8 +126,8 @@ Some of these options are for advanced usage only and should not be used unless
```ruby
ansible.host_vars = {
"host1" => {"http_port" => 80,
"maxRequestsPerChild" => 808},
"comments" => "text with spaces",
"maxRequestsPerChild" => 808,
"comments" => "text with spaces"},
"host2" => {"http_port" => 303,
"maxRequestsPerChild" => 909}
}