summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-07-25 12:47:33 -0700
committerTim Smith <tsmith@chef.io>2018-07-25 12:47:33 -0700
commit2b1470b1d4dd1e67a5a03c036d358ff32e987c15 (patch)
tree7421d18c41738de7f0f06275a813d1d685ae9175
parent992f509a9f77320108380ea2b63ef8557b2d7e14 (diff)
downloadchef-2b1470b1d4dd1e67a5a03c036d358ff32e987c15.tar.gz
Remove smart quotes
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/apt_repository.rb4
-rw-r--r--lib/chef/resource/file.rb2
-rw-r--r--lib/chef/resource/template.rb2
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/chef/resource/apt_repository.rb b/lib/chef/resource/apt_repository.rb
index 0ed38e61d3..a0d24a646b 100644
--- a/lib/chef/resource/apt_repository.rb
+++ b/lib/chef/resource/apt_repository.rb
@@ -42,11 +42,11 @@ class Chef
description: "The base of the Debian distribution."
property :distribution, [ String, nil, FalseClass ],
- description: "Usually a distribution’s codename, such as trusty, xenial or bionic. Default value: the codename of the node’s distro.",
+ description: "Usually a distribution's codename, such as trusty, xenial or bionic. Default value: the codename of the node's distro.",
default: lazy { node["lsb"]["codename"] }
property :components, Array,
- description: "Package groupings, such as ‘main’ and ‘stable’.",
+ description: "Package groupings, such as 'main' and 'stable'.",
default: lazy { [] }
property :arch, [String, nil, FalseClass],
diff --git a/lib/chef/resource/file.rb b/lib/chef/resource/file.rb
index f39520cb56..feedb6d0b9 100644
--- a/lib/chef/resource/file.rb
+++ b/lib/chef/resource/file.rb
@@ -72,7 +72,7 @@ class Chef
description: "How the chef-client handles certain situations when the target file turns out not to be a file. For example, when a target file is actually a symlink. Set to true for the chef-client delete the non-file target and replace it with the specified file. Set to false for the chef-client to raise an error."
property :manage_symlink_source, [ TrueClass, FalseClass ], desired_state: false,
- description: "Change the behavior of the file resource if it is pointed at a symlink. When this value is set to true, the Chef client will manage the symlink’s permissions or will replace the symlink with a normal file if the resource has content. When this value is set to false, Chef will follow the symlink and will manage the permissions and content of symlink’s target file. The default behavior is true but emits a warning that the default value will be changed to false in a future version; setting this explicitly to true or false suppresses this warning."
+ description: "Change the behavior of the file resource if it is pointed at a symlink. When this value is set to true, the Chef client will manage the symlink's permissions or will replace the symlink with a normal file if the resource has content. When this value is set to false, Chef will follow the symlink and will manage the permissions and content of symlink's target file. The default behavior is true but emits a warning that the default value will be changed to false in a future version; setting this explicitly to true or false suppresses this warning."
property :verifications, Array, default: lazy { [] }
diff --git a/lib/chef/resource/template.rb b/lib/chef/resource/template.rb
index 45879db8e6..26e85cc679 100644
--- a/lib/chef/resource/template.rb
+++ b/lib/chef/resource/template.rb
@@ -26,7 +26,7 @@ class Chef
# A cookbook template is an Embedded Ruby (ERB) template that is used to dynamically generate static text files.
# Templates may contain Ruby expressions and statements, and are a great way to manage configuration files. Use the
# template resource to add cookbook templates to recipes; place the corresponding Embedded Ruby (ERB) template file
- # in a cookbook’s /templates directory.
+ # in a cookbook's /templates directory.
#
# Use the template resource to manage the contents of a file using an Embedded Ruby (ERB) template by transferring
# files from a sub-directory of COOKBOOK_NAME/templates/ to a specified path located on a host that is running the