From fe13c5b55325c2926aa20aec340261e1c56c144a Mon Sep 17 00:00:00 2001 From: Voltace Date: Thu, 16 Apr 2015 20:14:18 +0200 Subject: [PATCH] cookies.erase was not referenced correctly in README.md --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index cee96a3..3f909bf 100644 --- a/README.md +++ b/README.md @@ -54,14 +54,14 @@ cookies.erase('firstName'); // Removes cookie ### API API contents: -- method [cookies.set(`name`, `value` [, `options`])](#cookies-set) +- method [cookies.set(`name`, `value` [, `options`])](#cookies-set) - method [cookies.get(`name`)](#cookies-get) -- method [cookies.set(`name`, [, `options`])](#cookies-erase) +- method [cookies.erase(`name`, [, `options`])](#cookies-erase) - property [cookies.defaults](#cookies-defaults) -
- -[**cookies.set(** `name`, `value` [, `options`] **)**](#cookies-set) +
+ +[**cookies.set(** `name`, `value` [, `options`] **)**](#cookies-set)
Method to save a cookie. @@ -72,8 +72,8 @@ Method to save a cookie. | **`options`** | object | may contain any of the properties specified in [options](#options) below. If an option is not specified, the value configured in [cookies.defaults](#cookies-defaults) will be used. -
- +
+ [**cookies.get(** `name` **)**](#cookies-get)
Method that returns a cookie value, or **null** if the cookie is not found. @@ -83,9 +83,9 @@ Method that returns a cookie value, or **null** if the cookie is not found. | **`name`** | string | the name of the cookie to retrieve. -
- -[**cookies.erase(** `name` [, `options`] **)**](#cookies-erase) +
+ +[**cookies.erase(** `name` [, `options` ] **)**](#cookies-erase)
Method to remove a cookie. @@ -95,8 +95,8 @@ Method to remove a cookie. | **`options`** | object | may contain the `domain` and `path` properties specified in [options](#options) below. If an option is not specified, the value configured in [cookies.defaults](#cookies-defaults) will be used. -
- +
+ [**cookies.defaults**](#cookies-defaults)
This object may be used to change the default value of each option specified in [options](#options) below.