Skip to content

Commit ef23b58

Browse files
authored
Incorporated rest of the suggestions
1 parent 795ecfc commit ef23b58

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

16/umbraco-cms/reference/searching/examine/indexing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ The order of these registrations matters. It is important to register your index
496496

497497
If you have a need, you can also use an Examine index for other data, that you aren't managing as Umbraco content.
498498

499-
As an illustrative example, we can define a collection of books. Here we have a hardcoded collection. In the real-world, it's more likely these will come from a database.
499+
As an illustrative example, consider a collection of books. This example uses a hardcoded collection. In a real-world scenario, the data would more likely come from a database.
500500

501501
```csharp
502502
namespace Umbraco.Docs.Samples.Web.CustomIndexing;
@@ -525,7 +525,7 @@ public static class BookData
525525
}
526526
```
527527

528-
As with the previous example, we define an index. As this time we aren't indexing Umbraco data, we inherit directly from `LuceneIndex`:
528+
As with the previous example, define an index. At this time, Umbraco data isn't being indexed; the implementation inherits directly from `LuceneIndex`:
529529

530530
```csharp
531531
using Examine.Lucene;
@@ -598,7 +598,7 @@ public class ExamineComposer : IComposer
598598
}
599599
```
600600

601-
With this in place, the details of the index will be available under the _Settings > Examine Management > Indexes_ screen.
601+
With this in place, the details of the index will be available under the **Settings** > **Examine Management** > **Indexes** screen.
602602

603603
To verify indexing and querying, a controller can be used:
604604

17/umbraco-cms/reference/searching/examine/indexing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ The order of these registrations matters. It is important to register your index
496496

497497
If you have a need, you can also use an Examine index for other data, that you aren't managing as Umbraco content.
498498

499-
As an illustrative example, we can define a collection of books. Here we have a hardcoded collection. In the real-world, it's more likely these will come from a database.
499+
As an illustrative example, consider a collection of books. This example uses a hardcoded collection. In a real-world scenario, the data would more likely come from a database.
500500

501501
```csharp
502502
namespace Umbraco.Docs.Samples.Web.CustomIndexing;
@@ -525,7 +525,7 @@ public static class BookData
525525
}
526526
```
527527

528-
As with the previous example, we define an index. As this time we aren't indexing Umbraco data, we inherit directly from `LuceneIndex`:
528+
As with the previous example, define an index. At this time, Umbraco data isn't being indexed; the implementation inherits directly from `LuceneIndex`:
529529

530530
```csharp
531531
using Examine.Lucene;

0 commit comments

Comments
 (0)