summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2021-10-16 23:15:15 -0700
committerTim Smith <tsmith84@gmail.com>2021-10-16 23:15:15 -0700
commitee14aa7be4196f837954dbebc461e373249ffbb5 (patch)
tree491f66e04644bdbb97686bc150f27e4bc36a853b
parent89d2c371e91eaed2ff3c48f9d45c5c01ca536410 (diff)
downloadmixlib-authentication-ee14aa7be4196f837954dbebc461e373249ffbb5.tar.gz
Fix typo and http -> https
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md2
-rw-r--r--lib/mixlib/authentication/signedheaderauth.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md b/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md
index 921a5f0..196da2e 100644
--- a/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md
+++ b/.github/ISSUE_TEMPLATE/SUPPORT_QUESTION.md
@@ -5,7 +5,7 @@ about: If you have a question 💬, please check out our Slack!
We use GitHub issues to track bugs and feature requests. If you need help please post to our Mailing List or join the Chef Community Slack.
- * Chef Community Slack at http://community-slack.chef.io/.
+ * Chef Community Slack at https://community-slack.chef.io/.
* Chef Mailing List https://discourse.chef.io/
Support issues opened here will be closed and redirected to Slack or Discourse.
diff --git a/lib/mixlib/authentication/signedheaderauth.rb b/lib/mixlib/authentication/signedheaderauth.rb
index 3782d1c..dc2adf3 100644
--- a/lib/mixlib/authentication/signedheaderauth.rb
+++ b/lib/mixlib/authentication/signedheaderauth.rb
@@ -269,7 +269,7 @@ module Mixlib
# @param rsa_key [OpenSSL::PKey::RSA] User's RSA key. If `use_ssh_agent` is
# true, this must have the public key portion populated. If `use_ssh_agent`
# is false, this must have the private key portion populated.
- # @param digest [Class] Sublcass of OpenSSL::Digest to use while signing.
+ # @param digest [Class] Subclass of OpenSSL::Digest to use while signing.
# @param sign_algorithm [String] Hash algorithm to use while signing.
# @param sign_version [String] Version number of the signing protocol to use.
# @param use_ssh_agent [Boolean] If true, use ssh-agent for request signing.