Skip to content

Commit ebf49df

Browse files
Remove the 'secure' attribute from the remove method in the README
Closes js-cookiegh-369. Closes js-cookiegh-203.
1 parent 82860ea commit ebf49df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ Either `true` or `false`, indicating if the cookie transmission requires a secur
224224
```javascript
225225
Cookies.set('name', 'value', { secure: true });
226226
Cookies.get('name'); // => 'value'
227-
Cookies.remove('name', { secure: true });
227+
Cookies.remove('name');
228228
```
229229

230230
## Converters

0 commit comments

Comments
 (0)