yard is smarter now?

On the changed line, YARD thought the bin path given was a regex and was interpretting it as such. It is not a regex.
This commit is contained in:
Eric Putnam 2018-01-29 16:07:57 -08:00
parent 993cb5fc05
commit ad35df8f89
No known key found for this signature in database
GPG Key ID: 3FB595AA224A7751
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ Puppet::Type.type(:custom).provide :linux do
defaultfor :osfamily => 'RedHat', :operatingsystemmajrelease => '7'
has_feature :implements_some_feature
has_feature :some_other_feature
commands foo: /usr/bin/foo
commands foo: '/usr/bin/foo'
end
SOURCE
}