Skip to content

Commit f7311e8

Browse files
Luuk PetersLuuk Peters
authored andcommitted
Reviewdog fix
1 parent 432a31e commit f7311e8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

15/umbraco-cms/customizing/property-editors/property-value-converters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Implement the methods that perform the conversion from a raw database value to a
163163
### `ConvertSourceToIntermediate(IPublishedElement owner, IPublishedPropertyType propertyType, object source, bool preview)`
164164
This method converts the raw data value into an appropriate intermediate type that is needed for the final conversion step to an object.
165165
For example:
166-
- A basic text property likely just stores its data as a `string`, so that can be converted to a `string` intermediate value.
166+
- A basic text property likely stores its data as a `string`, so that can be converted to a `string` intermediate value.
167167
- A Content Picker stores the node identifier (`Udi`) as a `string`. To return `IPublishedContent`, the final conversion step needs a `Udi` instead. So in the intermediate step, check if the `string` value is a valid `Udi` and convert the `string` to a `Udi` as the intermediate value.
168168

169169
```csharp

16/umbraco-cms/customizing/property-editors/property-value-converters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ Implement the methods that perform the conversion from a raw database value to a
163163
### `ConvertSourceToIntermediate(IPublishedElement owner, IPublishedPropertyType propertyType, object source, bool preview)`
164164
This method converts the raw data value into an appropriate intermediate type that is needed for the final conversion step to an object.
165165
For example:
166-
- A basic text property likely just stores its data as a `string`, so that can be converted to a `string` intermediate value.
166+
- A basic text property likely stores its data as a `string`, so that can be converted to a `string` intermediate value.
167167
- A Content Picker stores the node identifier (`Udi`) as a `string`. To return `IPublishedContent`, the final conversion step needs a `Udi` instead. So in the intermediate step, check if the `string` value is a valid `Udi` and convert the `string` to a `Udi` as the intermediate value.
168168

169169
```csharp

0 commit comments

Comments
 (0)