Skip to content

Commit 96740aa

Browse files
Minor doc fixes. (#103)
1 parent d582ac9 commit 96740aa

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
[![Forum](https://img.shields.io/badge/Forum-RediSearch-blue)](https://forum.redislabs.com/c/modules/redisearch/)
1111
[![Gitter](https://badges.gitter.im/RedisLabs/RediSearch.svg)](https://gitter.im/RedisLabs/RediSearch?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
1212

13-
This is a python search engine library that utilizes the [RediSearch Redis Module](http://redisearch.io) API.
13+
This is a Python search engine library that utilizes the [RediSearch Redis Module](http://redisearch.io) API.
1414

15-
It is the "official" client of redisearch, and should be regarded as its canonical client implementation.
15+
It is the "official" client of RediSearch, and should be regarded as its canonical client implementation.
1616

1717
## Features
1818

1919
RediSearch is a source avaliable ([RSAL](https://raw.githubusercontent.com/RediSearch/RediSearch/master/LICENSE)), high performance search engine implemented as a [Redis Module](https://redis.io/topics/modules-intro).
20-
It uses custom data types to allow fast, stable and feature rich full-text search inside redis.
20+
It uses custom data types to allow fast, stable and feature rich full-text search inside Redis.
2121

2222
This client is a wrapper around the RediSearch API protocol, that allows you to utilize its features easily.
2323

@@ -26,8 +26,8 @@ This client is a wrapper around the RediSearch API protocol, that allows you to
2626
* Full-Text indexing of multiple fields in documents.
2727
* Incremental indexing without performance loss.
2828
* Document ranking (provided manually by the user at index time) and field weights.
29-
* Auto-complete suggestions (with fuzzy prefix suggestions)
30-
* Exact Phrase Search
29+
* Auto-complete suggestions (with fuzzy prefix suggestions).
30+
* Exact Phrase Search.
3131
* Stemming based query expansion in [many languages](http://redisearch.io/Stemming/) (using [Snowball](http://snowballstem.org/)).
3232
* Limiting searches to specific document fields (up to 8 fields supported).
3333
* Numeric filters and ranges.
@@ -77,8 +77,8 @@ res = client.search(q)
7777

7878
## Installing
7979

80-
1. [Install RediSearch](http://redisearch.io/Quick_Start
81-
2. Install the python client:
80+
1. [Install RediSearch](http://redisearch.io/Quick_Start)
81+
2. Install the Python client:
8282

8383
```sh
8484
$ pip install redisearch

0 commit comments

Comments
 (0)