From 99b261b79c829b13fff5bfbbe6c0bfcbe2317dda Mon Sep 17 00:00:00 2001 From: Simon Prickett Date: Wed, 24 Nov 2021 19:40:20 +0000 Subject: [PATCH] Renamed JSON search example. --- examples/README.md | 2 +- examples/{search+json.js => search-json.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename examples/{search+json.js => search-json.js} (100%) diff --git a/examples/README.md b/examples/README.md index 1592967908..94b043ae48 100644 --- a/examples/README.md +++ b/examples/README.md @@ -10,7 +10,7 @@ This folder contains example scripts showing how to use Node Redis in different | `lua-multi-incr.js` | Define a custom lua script that allows you to perform INCRBY on multiple keys | | `managing-json.js` | Store, retrieve and manipulate JSON data atomically with [RedisJSON](https://redisjson.io/) | | `search-hashes.js` | Uses [RediSearch](https://redisearch.io) to index and search data in hashes | -| `search+json.js` | Uses [RediSearch](https://redisearch.io/) and [RedisJSON](https://redisjson.io/) to index and search JSON data | +| `search-json.js` | Uses [RediSearch](https://redisearch.io/) and [RedisJSON](https://redisjson.io/) to index and search JSON data | | `set-scan.js` | An example script that shows how to use the SSCAN iterator functionality | ## Contributing diff --git a/examples/search+json.js b/examples/search-json.js similarity index 100% rename from examples/search+json.js rename to examples/search-json.js