lib/nanoc/cli/commands/validate-html.rb in nanoc-3.6.7 vs lib/nanoc/cli/commands/validate-html.rb in nanoc-3.6.8

- old
+ new

@@ -2,19 +2,19 @@ usage 'validate-html [options]' aliases :validate_html, :vhtml summary 'validate the site’s HTML' be_hidden -description <<-EOS +description " Validates the site’s HTML files. -EOS +" module Nanoc::CLI::Commands class ValidateHTML < ::Nanoc::CLI::CommandRunner def run - warn "The `validate-html` command is deprecated. Please use the new `check` command instead." + warn 'The `validate-html` command is deprecated. Please use the new `check` command instead.' Nanoc::CLI.run %w( check html ) end end