From f830ddeca65a1c143baeb3c720e9de112209000d Mon Sep 17 00:00:00 2001 From: Ryan Davis Date: Mon, 27 Jan 2020 15:28:18 -0800 Subject: [PATCH] Slimmed up and removed "clever" from file resource description. Signed-off-by: Ryan Davis --- lib/inspec/resources/file.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/inspec/resources/file.rb b/lib/inspec/resources/file.rb index 47dfae34b..9d22afb94 100644 --- a/lib/inspec/resources/file.rb +++ b/lib/inspec/resources/file.rb @@ -22,7 +22,7 @@ module Inspec::Resources name "file" supports platform: "unix" supports platform: "windows" - desc "Use the file InSpec audit resource to test all system file types, including files, directories, symbolic links, named pipes, sockets, character devices, block devices, and doors." + desc "Use the file InSpec audit resource to test all system file types, including files, directories, symbolic links, etc." example <<~EXAMPLE describe file('path') do it { should exist }