Fix confusing comment typo [ci skip] (#2761)

This commit is contained in:
Jacob Herrington 2021-12-10 13:52:57 -06:00 committed by GitHub
parent b15b78c60d
commit 955e193e91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -11,10 +11,10 @@ require 'puma/events'
module Puma
class << self
# The CLI exports its Puma::Configuration object here to allow
# apps to pick it up. An app needs to use it conditionally though
# since it is not set if the app is launched via another
# mechanism than the CLI class.
# The CLI exports a Puma::Configuration instance here to allow
# apps to pick it up. An app must load this object conditionally
# because it is not set if the app is launched via any mechanism
# other than the CLI class.
attr_accessor :cli_config
end