Skip to content

Commit f825424

Browse files
Update Search documentation to use Indices() instead of deprecated Index() (#8670)
1 parent 82b4479 commit f825424

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/reference/query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This page demonstrates how to perform a search request.
1111

1212
```csharp
1313
var response = await client.SearchAsync<Person>(search => search
14-
.Index("persons")
14+
.Indices("persons")
1515
.Query(query => query
1616
.Term(term => term
1717
.Field(x => x.FirstName)

0 commit comments

Comments
 (0)