1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00

Typo correction "t̵h̵e̵n̵" "than" (#2534)

_Than_ is used in comparisons as a conjunction (as in "she is younger than I am") and as a preposition ("he is taller than me"). _Then_ indicates time. It is used as an adverb ("I lived in Idaho then"), noun ("we'll have to wait until then"), and adjective ("the then-governor").

<img src="https://blog.inkforall.com/wp-content/uploads/2020/10/than-vs-then-1024x683.jpg" width="555"/>
This commit is contained in:
Mavaddat Javid 2022-02-01 18:58:14 -08:00 committed by GitHub
parent c4db2719cf
commit 2a0ec8f71a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -194,7 +194,7 @@ module Middleman
unless server_information.port == configured_port
app.logger.warn format(
'== The Middleman uses a different port "%<new_port>s" then the configured one "%<old_port>s" because some other server is listening on that port.',
'== The Middleman will use a different port "%<new_port>s" than port "%<old_port>s" as requested, because another server is listening on that port.',
new_port: server_information.port,
old_port: configured_port
)