From 6cf7ab74af33043b8e4ae666a0d1b15f491a2d2d Mon Sep 17 00:00:00 2001 From: Alisson Leal Date: Sat, 23 Dec 2023 10:48:00 -0300 Subject: [PATCH 1/2] docs: use correct github memstore file url --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 883b6031..6cc71f6e 100644 --- a/README.md +++ b/README.md @@ -390,7 +390,7 @@ Base class for CookieJar stores. Available as `tough.Store`. ### Store API -The storage model for each `CookieJar` instance can be replaced with a custom implementation. The default is `MemoryCookieStore` which can be found in [`lib/memstore.js`](https://github.com/salesforce/tough-cookie/blob/master/lib/memstore.js). The API uses continuation-passing-style to allow for asynchronous stores. +The storage model for each `CookieJar` instance can be replaced with a custom implementation. The default is `MemoryCookieStore` which can be found in [`lib/memstore.js`](https://github.com/salesforce/tough-cookie/blob/master/lib/memstore.ts). The API uses continuation-passing-style to allow for asynchronous stores. Stores should inherit from the base `Store` class, which is available as a top-level export. From 860b2236208df82643f02aa6233e5adc60b6f466 Mon Sep 17 00:00:00 2001 From: Alisson Leal Date: Sat, 23 Dec 2023 10:49:17 -0300 Subject: [PATCH 2/2] docs: use correct github memstore file name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6cc71f6e..ac29100a 100644 --- a/README.md +++ b/README.md @@ -390,7 +390,7 @@ Base class for CookieJar stores. Available as `tough.Store`. ### Store API -The storage model for each `CookieJar` instance can be replaced with a custom implementation. The default is `MemoryCookieStore` which can be found in [`lib/memstore.js`](https://github.com/salesforce/tough-cookie/blob/master/lib/memstore.ts). The API uses continuation-passing-style to allow for asynchronous stores. +The storage model for each `CookieJar` instance can be replaced with a custom implementation. The default is `MemoryCookieStore` which can be found in [`lib/memstore.ts`](https://github.com/salesforce/tough-cookie/blob/master/lib/memstore.ts). The API uses continuation-passing-style to allow for asynchronous stores. Stores should inherit from the base `Store` class, which is available as a top-level export.