Merge pull request #51876 from skipkayhil/hm-tmp-fix-md-dl

Temporarily fix multi-paragraph definition lists [ci skip]
This commit is contained in:
Rafael Mendonça França 2024-05-22 14:55:14 -04:00 committed by GitHub
commit 5b7a9c4e88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ module ActionController
# `If-None-Match` header may receive a `304 Not Modified` response if the
# ETag matches exactly.
#
# A weak ETag indicates semantic equivalence, not byte-for-byte equality, so
# : A weak ETag indicates semantic equivalence, not byte-for-byte equality, so
# they're good for caching HTML pages in browser caches. They can't be used
# for responses that must be byte-identical, like serving `Range` requests
# within a PDF file.
@ -58,7 +58,7 @@ module ActionController
# `If-None-Match` header may receive a `304 Not Modified` response if the
# ETag matches exactly.
#
# A strong ETag implies exact equality -- the response must match byte for
# : A strong ETag implies exact equality -- the response must match byte for
# byte. This is necessary for serving `Range` requests within a large video
# or PDF file, for example, or for compatibility with some CDNs that don't
# support weak ETags.