Skip to content

Commit 230afe2

Browse files
author
Gabriel Erzse
committed
Formatting and typos
Fix some typos in the markdown files and run `dotnet format` on existing code.
1 parent 980a77c commit 230afe2

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Here's how to get started with your code contribution:
3535
3. Write your tests
3636

3737
4. Use the `docker run -p 6379:6379 -it redis/redis-stack-server:edge` as your local environment for running the functional tests. You can also use Development Container as described below.
38-
5. Run dotnet format to make sure your code is formatted
38+
5. Run `dotnet format` to make sure your code is formatted
3939
6. Make sure your tests pass using `dotnet test`
4040
7. Open a pull request
4141

@@ -121,6 +121,7 @@ e.g. :
121121
```bash
122122
dotnet test --environment "REDIS_CLUSTER=127.0.0.1:16379" --environment "NUM_REDIS_CLUSTER_NODES=6"
123123
```
124+
124125
## How to Report a Bug
125126

126127
### Security Vulnerabilities
@@ -145,7 +146,7 @@ issue, so if you're unsure, just email [us](mailto:[email protected]).
145146
When filing an issue, make sure to answer these five questions:
146147

147148
1. What version of NRedisStack are you using?
148-
2. What version of redis are you using?
149+
2. What version of Redis are you using?
149150
3. What did you do?
150151
4. What did you expect to see?
151152
5. What did you see instead?

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,17 @@ This project builds on [StackExchange.Redis](https://github.com/StackExchange/St
3131
The complete documentation for Redis module commands can be found at the [Redis commands website](https://redis.io/commands/).
3232

3333
### Redis OSS commands
34+
3435
You can use Redis OSS commands in the same way as you use them in [StackExchange.Redis](https://github.com/StackExchange/StackExchange.Redis).
3536

3637
### Stack commands
38+
3739
Each module has a command class with its own commands.
40+
3841
The supported modules are [Search](https://redis.io/commands/?group=search), [JSON](https://redis.io/commands/?group=json), [TimeSeries](https://redis.io/commands/?group=timeseries), [Bloom Filter](https://redis.io/commands/?group=bf), [Cuckoo Filter](https://redis.io/commands/?group=cf), [T-Digest](https://redis.io/commands/?group=tdigest), [Count-min Sketch](https://redis.io/commands/?group=cms), and [Top-K](https://redis.io/commands/?group=topk).
3942

4043
**Note:** RedisGraph support has been deprecated starting from Redis Stack version 7.2. For more information, please refer to [this blog post](https://redis.com/blog/redisgraph-eol/).
4144

42-
4345
# Usage
4446

4547
## 💻 Installation

0 commit comments

Comments
 (0)