From 67c17734cc75277f403120482ea1e7f51dd7a187 Mon Sep 17 00:00:00 2001 From: George Dietrich Date: Thu, 24 Dec 2020 10:09:47 -0500 Subject: [PATCH] Fix typo --- src/athena-negotiation.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/athena-negotiation.cr b/src/athena-negotiation.cr index 1b36c62..f760d47 100644 --- a/src/athena-negotiation.cr +++ b/src/athena-negotiation.cr @@ -67,7 +67,7 @@ alias ANG = Athena::Negotiation # accept.coding # => "gzip" # ``` # -# The `ANG::EncodingNegotiator` type returns an `ANG::AcceptEncoding`, or `nil` if negotiating the best character set has failed. +# The `ANG::EncodingNegotiator` type returns an `ANG::AcceptEncoding`, or `nil` if negotiating the best encoding has failed. # # ### Language # @@ -84,7 +84,7 @@ alias ANG = Athena::Negotiation # accept.script # => "hans" # ``` # -# The `ANG::LanguageNegotiator` type returns an `ANG::AcceptLanguage`, or `nil` if negotiating the best character set has failed. +# The `ANG::LanguageNegotiator` type returns an `ANG::AcceptLanguage`, or `nil` if negotiating the best language has failed. module Athena::Negotiation # Returns a lazily initialized `ANG::Negotiator` singleton instance. class_getter(negotiator) { ANG::Negotiator.new }