Skip to content

Commit 8e360c6

Browse files
committed
Linting
1 parent 714137b commit 8e360c6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

15/umbraco-cms/reference/content-type-filters.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Describes how to use content type filters to restrict the allowed content options available to editors.
2+
description: Describes how to use Content Type Filters to restrict the allowed content options available to editors.
33
---
44

55
# Filtering Allowed Content Types
@@ -20,9 +20,9 @@ To create a content type filter you use a class that implements the `IContentTyp
2020

2121
There are two methods you can implement. One is for filtering the content types allowed at the content root. The other is for the content types allowed below a given parent node.
2222

23-
If you don't want to filter for one or other method, you can just return the provided collection unmodified.
23+
If you don't want to filter for one or other method, you can return the provided collection unmodified.
2424

25-
The following example shows a typical use case. Often websites will have a "Home Page" document type which is created at the root. Normally, only one of these is required. You can enforce that using the following content type filter.
25+
The following example shows a typical use case. Often websites will have a "Home Page" Document Type which is created at the root. Normally, only one of these is required. You can enforce that using the following Content Type Filter.
2626

2727
Here we are querying the existing content available at the root. Normally we can create a "Home Page" here, but if one already exists, we remove the option:
2828

@@ -57,7 +57,7 @@ internal class OneHomePageOnlyContentTypeFilter : IContentTypeFilter
5757
}
5858
```
5959

60-
Content type filters are registered as a collection, so it's possible to have more than one either in the solution or an installed package.
60+
Content Type Filters are registered as a collection, so it's possible to have more than one either in the solution or an installed package.
6161

6262
You use a composer to register the filters:
6363

0 commit comments

Comments
 (0)