Skip to content

Commit 0bfdd32

Browse files
authored
Merge pull request RediSearch#11 from simonprickett/patch-5
Minor spelling / phrasing suggestions.
2 parents da1c727 + 3d4a423 commit 0bfdd32

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/005-manage-index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
### Listing and inspecting the indexes
55

6-
`FT._LIST` command provides the list of all RediSearch index of your database:
6+
The `FT._LIST` command provides a list of all RediSearch indexes in your database:
77

88
```
99
> FT._LIST
1010
1) "idx:movie"
1111
```
1212

13-
`FT.INFO` provides information about the index
13+
`FT.INFO` provides information about a specific index:
1414

1515
```
1616
> FT.INFO "idx:movie"
@@ -31,7 +31,7 @@
3131

3232
### Updating your Indexing
3333

34-
As you are building your application and adding more information to the database you may need to add new field to the index. It is possible using the `FT.ALTER` command.
34+
As you are build your application and add more information to the database you may need to add new fields to the index. The `FT.ALTER` command enables you to do this.
3535

3636
```
3737
> FT.ALTER idx:movie SCHEMA ADD plot TEXT WEIGHT 0.5
@@ -48,18 +48,18 @@ Let's do a query with the new indexed field:
4848
```
4949

5050

51-
### Droping the Index
51+
### Dropping the Index
5252

5353

54-
You can now drop the index using the `FT.DROPINDEX` command.
54+
You can drop an index using the `FT.DROPINDEX` command.
5555

5656
```
5757
> FT.DROPINDEX idx:movie
5858
5959
"OK"
6060
```
6161

62-
Droping the index does not impact the indexed hashes, this means that the movies are still inside the database.
62+
Dropping an index does not impact the indexed hashes, this means that the movies are still inside the database.
6363

6464
```
6565
>SCAN 0 MATCH movie:*
@@ -76,4 +76,4 @@ Droping the index does not impact the indexed hashes, this means that the movies
7676

7777

7878
---
79-
Next: [Import Sample Dataset](006-import-dataset.md)
79+
Next: [Import Sample Dataset](006-import-dataset.md)

0 commit comments

Comments
 (0)