From ccd32787a2aed5f876693b2c8d7100d1daba4782 Mon Sep 17 00:00:00 2001 From: Stephen Lautier Date: Sun, 20 Sep 2015 17:46:57 +0200 Subject: [PATCH] wrapped comments around 80-100 chars as suggested --- angularjs/angular-cookies.d.ts | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/angularjs/angular-cookies.d.ts b/angularjs/angular-cookies.d.ts index 617b9f793d..25efc42de7 100644 --- a/angularjs/angular-cookies.d.ts +++ b/angularjs/angular-cookies.d.ts @@ -22,16 +22,19 @@ declare module angular.cookies { */ interface ICookiesOptions { /** - * The cookie will be available only for this path and its sub-paths. By default, this would be the URL that appears in your base tag. + * The cookie will be available only for this path and its sub-paths. + * By default, this would be the URL that appears in your base tag. */ path?: string; /** - * The cookie will be available only for this domain and its sub-domains. - * For obvious security reasons the user agent will not accept the cookie if the current domain is not a sub domain or equals to the requested domain. + * The cookie will be available only for this domain and its sub-domains. + * For obvious security reasons the user agent will not accept the cookie if the + * current domain is not a sub domain or equals to the requested domain. */ domain?: string; /** - * String of the form "Wdy, DD Mon YYYY HH:MM:SS GMT" or a Date object indicating the exact date/time this cookie will expire. + * String of the form "Wdy, DD Mon YYYY HH:MM:SS GMT" or a Date object + * indicating the exact date/time this cookie will expire. */ expires?: string|Date; /**