Drive-by typo fix (#7769)

This commit is contained in:
Jean Jordaan
2017-07-11 19:10:25 +07:00
committed by Antoine Griffard
parent fca9bb41af
commit db8e06e7e8
2 changed files with 4 additions and 4 deletions

View File

@@ -37,11 +37,11 @@ namespace Orchard.Layouts.Drivers {
Id: "shapeType",
Name: "ShapeType",
Title: T("Shape Type"),
Description: T("The shape type name to dislay."),
Description: T("The shape type name to display."),
Classes: new[] { "text", "large", "tokenized" }));
return form;
});
}
}
}
}

View File

@@ -23,7 +23,7 @@ namespace Orchard.Layouts.Services {
/// Renders the specified layout Data into a shape tree.
/// </summary>
/// <param name="data">The layout Data.</param>
/// <param name="displayType">Optional. The dislay type to use when rendering the elements.</param>
/// <param name="displayType">Optional. The display type to use when rendering the elements.</param>
/// <param name="content">Optional. Provides additional context to the elements being loaded and rendered.</param>
/// <returns>A shape representing the layout to be rendered.</returns>
dynamic RenderLayout(string data, string displayType = null, IContent content = null);
@@ -59,4 +59,4 @@ namespace Orchard.Layouts.Services {
void Imported(ImportLayoutContext context);
void ImportCompleted(ImportLayoutContext context);
}
}
}