diff options
Diffstat (limited to 'tasks')
-rwxr-xr-x | tasks/docs.rb | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tasks/docs.rb b/tasks/docs.rb index cfa937c58d..1ab9153aea 100755 --- a/tasks/docs.rb +++ b/tasks/docs.rb @@ -219,8 +219,6 @@ namespace :docs_site do properties["properties_shortcode"] = case name - when "breakpoint" - "resource_breakpoint_properties.md" when "ohai" "resource_ohai_properties.md" when "log" @@ -256,10 +254,7 @@ namespace :docs_site do properties["ruby_style_basics_chef_log"] = name == "log" properties["syntax_shortcode"] = - case name - when "breakpoint" - "resource_breakpoint_syntax.md" - when "log" + if name == "log" "resource_log_syntax.md" else nil |