summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2019-08-08 15:43:10 -0700
committerTim Smith <tsmith84@gmail.com>2019-08-08 15:43:10 -0700
commitbca8f02bdf21703e0bc57f6056a81179d1683e3a (patch)
tree2fa72a5223f11b262d2dc1a5eee4d72c4ba5b130
parente10231977b030e1bf42d32f3858c27346866d53d (diff)
downloadchef-bca8f02bdf21703e0bc57f6056a81179d1683e3a.tar.gz
Hide a state property from the docs
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/chocolatey_feature.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/chocolatey_feature.rb b/lib/chef/resource/chocolatey_feature.rb
index eef28cbe0a..0fa053935d 100644
--- a/lib/chef/resource/chocolatey_feature.rb
+++ b/lib/chef/resource/chocolatey_feature.rb
@@ -25,7 +25,7 @@ class Chef
property :feature_name, String, name_property: true,
description: "The name of the Chocolatey feature to enable or disable."
- property :feature_state, [TrueClass, FalseClass], default: false
+ property :feature_state, [TrueClass, FalseClass], default: false, skip_docs: true
load_current_value do
current_state = fetch_feature_element(feature_name)