LibURL+LibWeb+Tests: Remove redundant words

This commit is contained in:
zoupingshi 2025-02-22 10:59:50 +08:00 committed by Sam Atkins
parent d5be18617e
commit b609d8481a
Notes: github-actions[bot] 2025-02-27 10:36:40 +00:00
6 changed files with 7 additions and 7 deletions

View file

@ -36,7 +36,7 @@ GC::Ref<Blob> Blob::create(JS::Realm& realm, ByteBuffer byte_buffer, String type
// https://w3c.github.io/FileAPI/#convert-line-endings-to-native
ErrorOr<String> convert_line_endings_to_native(StringView string)
{
// 1. Let native line ending be be the code point U+000A LF.
// 1. Let native line ending be the code point U+000A LF.
auto native_line_ending = "\n"sv;
// 2. If the underlying platforms conventions are to represent newlines as a carriage return and line feed sequence, set native line ending to the code point U+000D CR followed by the code point U+000A LF.