summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Fetch
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2022-11-08 10:02:01 -0500
committerSam Atkins <atkinssj@gmail.com>2022-11-08 15:09:08 +0000
commitd09b5e8484a5d4869d119cf3fc66b1a247cbd36d (patch)
tree82308e442b61aa3559d4b3dbdd7fb8a82bb106fc /Userland/Libraries/LibWeb/Fetch
parent7442cfb5072b74a62c0e061e6e9ff44fda08780d (diff)
downloadserenity-d09b5e8484a5d4869d119cf3fc66b1a247cbd36d.zip
Everywhere: Clean up "in in" comment typos
Includes fetch editorial update https://github.com/whatwg/fetch/commit/3cafbdfc39250!
Diffstat (limited to 'Userland/Libraries/LibWeb/Fetch')
-rw-r--r--Userland/Libraries/LibWeb/Fetch/BodyInit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Fetch/BodyInit.cpp b/Userland/Libraries/LibWeb/Fetch/BodyInit.cpp
index 2360178865..18d318ba46 100644
--- a/Userland/Libraries/LibWeb/Fetch/BodyInit.cpp
+++ b/Userland/Libraries/LibWeb/Fetch/BodyInit.cpp
@@ -113,7 +113,7 @@ WebIDL::ExceptionOr<Infrastructure::BodyWithType> extract_body(JS::Realm& realm,
}));
// FIXME: 11. If source is a byte sequence, then set action to a step that returns source and length to source’s length.
- // FIXME: 12. If action is non-null, then run these steps in in parallel:
+ // FIXME: 12. If action is non-null, then run these steps in parallel:
// 13. Let body be a body whose stream is stream, source is source, and length is length.
auto body = Infrastructure::Body { JS::make_handle(*stream), move(source), move(length) };