From 78a8dcd9de92a34e1f16e9728784b77a033a654d Mon Sep 17 00:00:00 2001 From: Anne van Kesteren Date: Thu, 24 May 2018 12:45:28 +0200 Subject: [PATCH] Editorial: avoid normative keywords in domintro block --- fetch.bs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/fetch.bs b/fetch.bs index e7ae3b1af..ce06e151a 100644 --- a/fetch.bs +++ b/fetch.bs @@ -5026,7 +5026,7 @@ initially a new {{AbortSignal}} object. input is a string, and input's {{Request/url}} if input is a {{Request}} object. -

The optional init argument is an object whose properties can be set as follows:

+

The init argument is an object whose properties can be set as follows:

{{RequestInit/method}} @@ -5059,8 +5059,9 @@ initially a new {{AbortSignal}} object. request's {{Request/cache}}.
{{RequestInit/redirect}} -
A string indicating whether or not request should automatically follow redirects, - result in an error, or manually follow redirects. Sets request's {{Request/redirect}}. +
A string indicating whether request follows redirects, results in an error upon + encountering a redirect, or returns the redirect (in an opaque fashion). Sets + request's {{Request/redirect}}.
{{RequestInit/integrity}}
A cryptographic hash of the resource to be fetched by request. Sets @@ -5121,8 +5122,7 @@ initially a new {{AbortSignal}} object.
request . integrity
Returns request's subresource integrity metadata, which is a cryptographic hash of - the resource being fetched. Its value may consist of multiple hashes separated by whitespace. - [[SRI]] + the resource being fetched. Its value consists of multiple hashes separated by whitespace. [[SRI]]
request . keepalive
Returns a boolean indicating whether or not request can outlive the global in which