Skip to content

Commit 0474176

Browse files
committed
Use consistent quotes throughout
1 parent 9e04fa3 commit 0474176

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/secure_headers/headers/referrer_policy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def validate_config!(config)
3333
when String, Array
3434
config = Array(config)
3535
unless config.all? { |t| t.is_a?(String) && VALID_POLICIES.include?(t.downcase) }
36-
raise ReferrerPolicyConfigError.new("Value can only be one or more of #{VALID_POLICIES.join(', ')}")
36+
raise ReferrerPolicyConfigError.new("Value can only be one or more of #{VALID_POLICIES.join(", ")}")
3737
end
3838
else
3939
raise TypeError.new("Must be a string or array of strings. Found #{config.class}: #{config}")

0 commit comments

Comments
 (0)