From cfae52ab511671a4f6284457e658b78f687dbda4 Mon Sep 17 00:00:00 2001 From: Muhammad Umair Date: Wed, 2 Oct 2019 20:45:19 +0500 Subject: [PATCH] docs: added value param wrt. method signature (#32968) PR Close #32968 --- packages/common/http/src/headers.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/common/http/src/headers.ts b/packages/common/http/src/headers.ts index 3e1a5222ad37e7..a8a006d467e7b2 100755 --- a/packages/common/http/src/headers.ts +++ b/packages/common/http/src/headers.ts @@ -139,8 +139,8 @@ export class HttpHeaders { * Appends a new value to the existing set of values for a header * and returns them in a clone of the original instance. * - * @param name The header name for which to append the value or values. - * @param value The new value or array of values. + * @param name The header name for which to append the values. + * @param value The value to append. * * @returns A clone of the HTTP headers object with the value appended to the given header. */