Skip to content

Commit ccd3278

Browse files
wrapped comments around 80-100 chars as suggested
1 parent 8b6c5fc commit ccd3278

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

angularjs/angular-cookies.d.ts

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,19 @@ declare module angular.cookies {
2222
*/
2323
interface ICookiesOptions {
2424
/**
25-
* 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.
25+
* The cookie will be available only for this path and its sub-paths.
26+
* By default, this would be the URL that appears in your base tag.
2627
*/
2728
path?: string;
2829
/**
29-
* The cookie will be available only for this domain and its sub-domains.
30-
* 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.
30+
* The cookie will be available only for this domain and its sub-domains.
31+
* For obvious security reasons the user agent will not accept the cookie if the
32+
* current domain is not a sub domain or equals to the requested domain.
3133
*/
3234
domain?: string;
3335
/**
34-
* 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.
36+
* String of the form "Wdy, DD Mon YYYY HH:MM:SS GMT" or a Date object
37+
* indicating the exact date/time this cookie will expire.
3538
*/
3639
expires?: string|Date;
3740
/**

0 commit comments

Comments
 (0)