From 0f1dc0ace127666f68066cc07aa26bb9762b2c57 Mon Sep 17 00:00:00 2001 From: Arham Khawar <68909415+ch-Arham@users.noreply.github.com> Date: Fri, 21 Feb 2025 13:05:05 +0500 Subject: [PATCH] script intendation and typo fix --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b4c0d0f..6716576 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Please get in contact with us, if you are using some parts of node-cache's inter # Install ```bash - npm install node-cache --save +npm install node-cache --save ``` Or just require the `node_cache.js` file to get the superclass @@ -243,10 +243,10 @@ myCache.set( "ttlKey", "MyExpireData" ) myCache.set( "noTtlKey", "NonExpireData", 0 ) ts = myCache.getTtl( "ttlKey" ) -// ts wil be approximately 1456000600000 +// ts will be approximately 1456000600000 ts = myCache.getTtl( "ttlKey" ) -// ts wil be approximately 1456000600000 +// ts will be approximately 1456000600000 ts = myCache.getTtl( "noTtlKey" ) // ts = 0