diff --git a/src/Umbraco.Core/Deploy/IGridCellValueConnector.cs b/src/Umbraco.Core/Deploy/IGridCellValueConnector.cs index 5492a3effe..15ed404d31 100644 --- a/src/Umbraco.Core/Deploy/IGridCellValueConnector.cs +++ b/src/Umbraco.Core/Deploy/IGridCellValueConnector.cs @@ -25,7 +25,7 @@ namespace Umbraco.Core.Deploy /// The dependencies of the property. /// The grid cell value to be deployed. /// Note that - string ToArtifact(GridValue.GridControl gridControl, ICollection dependencies); + string GetValue(GridValue.GridControl gridControl, ICollection dependencies); /// /// Allows you to modify the value of a control being deployed. @@ -33,6 +33,6 @@ namespace Umbraco.Core.Deploy /// The control being deployed. /// Follows the pattern of the property value connectors (). The SetValue method is used to modify the value of the . - void FromArtifact(GridValue.GridControl gridControl); + void SetValue(GridValue.GridControl gridControl); } }