Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
105th committed Mar 15, 2024
1 parent 3492998 commit b19341e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/scriptlets/set-cookie-reload.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import {
* - `/` — root path
* - `none` — to set no path at all
* - `domain` — optional, cookie domain, if not set origin will be set as domain,
* if the domain does not match the origin, the cookie will not be set;
* if the domain does not match the origin, the cookie will not be set
*
* > Note that the scriptlet does not encode a cookie name,
* > e.g. name 'a:b' will be set as 'a:b' and not as 'a%3Ab'.
Expand Down
2 changes: 1 addition & 1 deletion src/scriptlets/set-cookie.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ import {
* - `/` — root path
* - `none` — to set no path at all
* - `domain` — optional, cookie domain, if not set origin will be set as domain,
* if the domain does not match the origin, the cookie will not be set;
* if the domain does not match the origin, the cookie will not be set
*
* > Note that the scriptlet does not encode a cookie name,
* > e.g. name 'a:b' will be set as 'a:b' and not as 'a%3Ab'.
Expand Down
2 changes: 1 addition & 1 deletion src/scriptlets/trusted-set-cookie-reload.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import {
* - `/` — root path
* - `none` — to set no path at all
* - `domain` — optional, cookie domain, if not set origin will be set as domain,
* if the domain does not match the origin, the cookie will not be set;
* if the domain does not match the origin, the cookie will not be set
*
* > Note that the scriptlet does not encode cookie names and values.
* > As a result, if a cookie's name or value includes `;`,
Expand Down
2 changes: 1 addition & 1 deletion src/scriptlets/trusted-set-cookie.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import {
* - `/` — root path
* - `none` — to set no path at all
* - `domain` — optional, cookie domain, if not set origin will be set as domain,
* if the domain does not match the origin, the cookie will not be set;
* if the domain does not match the origin, the cookie will not be set
*
* > Note that the scriptlet does not encode cookie names and values.
* > As a result, if a cookie's name or value includes `;`,
Expand Down

0 comments on commit b19341e

Please sign in to comment.