Doc typo fix (#3551)

Signed-off-by: Dave Grizzanti <david_grizzanti@comcast.com>
This commit is contained in:
David Grizzanti 2018-11-05 09:11:23 -05:00 committed by Jared Quick
parent 640dadfd7a
commit d8c90df4df
2 changed files with 2 additions and 2 deletions

View file

@ -75,7 +75,7 @@ The following examples show how to use this InSpec audit resource.
its('Client.Version') { should cmp >= '1.12'}
end
### Iterate over all containers to verify host coniguration
### Iterate over all containers to verify host configuration
docker.containers.ids.each do |id|
# call Docker inspect for a specific container id

View file

@ -22,7 +22,7 @@ class DockerRunner
@conf = YAML.load_file(@conf_path)
if @conf.nil? or @conf.empty?
fail "Can't read coniguration in #{@conf_path}"
fail "Can't read configuration in #{@conf_path}"
end
if @conf['images'].nil?
fail "You must configure test images in your #{@conf_path}"