From 09e011b3890af1525f27b788da63b09d8e874604 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 19 Oct 2018 19:15:27 -0400 Subject: Format. --- js/dom_types.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'js/dom_types.ts') diff --git a/js/dom_types.ts b/js/dom_types.ts index 71881773d..75f683be5 100644 --- a/js/dom_types.ts +++ b/js/dom_types.ts @@ -296,8 +296,8 @@ export interface Headers { append(name: string, value: string): void; /** Deletes a header from a `Headers` object. */ delete(name: string): void; - /** Returns an iterator allowing to go through all key/value pairs - * contained in this Headers object. The both the key and value of each pairs + /** Returns an iterator allowing to go through all key/value pairs + * contained in this Headers object. The both the key and value of each pairs * are ByteString objects. */ entries(): IterableIterator<[string, string]>; @@ -309,7 +309,7 @@ export interface Headers { * header. */ has(name: string): boolean; - /** Returns an iterator allowing to go through all keys contained in + /** Returns an iterator allowing to go through all keys contained in * this Headers object. The keys are ByteString objects. */ keys(): IterableIterator; @@ -317,7 +317,7 @@ export interface Headers { * the header if it does not already exist. */ set(name: string, value: string): void; - /** Returns an iterator allowing to go through all values contained in + /** Returns an iterator allowing to go through all values contained in * this Headers object. The values are ByteString objects. */ values(): IterableIterator; @@ -326,7 +326,7 @@ export interface Headers { // tslint:disable-next-line:no-any thisArg?: any ): void; - /** The Symbol.iterator well-known symbol specifies the default + /** The Symbol.iterator well-known symbol specifies the default * iterator for this Headers object */ [Symbol.iterator](): IterableIterator<[string, string]>; -- cgit v1.2.3