Skip to content

Commit 795ecfc

Browse files
authored
Incorporated suggestions
1 parent 867d210 commit 795ecfc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ Remember to register `ConfigureMemberIndexOptions` in your composer.
149149
The following example will show how to create an index that will only include nodes based on the **Product**.
150150

151151
{% hint style="info" %}
152-
We recommend that you use the existing built in ExternalIndex. You should then query based on the NodeTypeAlias instead of creating a new separate index based on that particular node type. However, should the need arise, the example below will show you how to do it.
152+
It is recommended to use the existing built-in `ExternalIndex`. You should then query based on the `NodeTypeAlias` instead of creating a new separate index based on that particular node type. However, should the need arise, the example below will show you how to do it.
153153

154-
Take a look at our [Examine Quick Start](quick-start.md) to see some examples of how to search the ExternalIndex.
154+
Take a look at the [Examine Quick Start](quick-start.md) guide to see some examples of how to search the ExternalIndex.
155155
{% endhint %}
156156

157157
To create this index we need five things:
@@ -577,7 +577,7 @@ public class ConfigureBookIndexOptions : IConfigureNamedOptions<LuceneDirectoryI
577577
}
578578
```
579579

580-
And once again, we need a composer to register the necessary components:
580+
And once again, a composer is required to register the necessary components:
581581

582582
```csharp
583583
using Examine;

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ Remember to register `ConfigureMemberIndexOptions` in your composer.
149149
The following example will show how to create an index that will only include nodes based on the **Product**.
150150

151151
{% hint style="info" %}
152-
We recommend that you use the existing built in ExternalIndex. You should then query based on the NodeTypeAlias instead of creating a new separate index based on that particular node type. However, should the need arise, the example below will show you how to do it.
152+
It is recommended to use the existing built-in `ExternalIndex`. You should then query based on the `NodeTypeAlias` instead of creating a new separate index based on that particular node type. However, should the need arise, the example below will show you how to do it.
153153

154-
Take a look at our [Examine Quick Start](quick-start.md) to see some examples of how to search the ExternalIndex.
154+
Take a look at the [Examine Quick Start](quick-start.md) guide to see some examples of how to search the ExternalIndex.
155155
{% endhint %}
156156

157157
To create this index we need five things:
@@ -577,7 +577,7 @@ public class ConfigureBookIndexOptions : IConfigureNamedOptions<LuceneDirectoryI
577577
}
578578
```
579579

580-
And once again, we need a composer to register the necessary components:
580+
And once again, a composer is required to register the necessary components:
581581

582582
```csharp
583583
using Examine;
@@ -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

0 commit comments

Comments
 (0)