From d1ac2f11d1b6d261ba1378ad84496c3da94232bc Mon Sep 17 00:00:00 2001 From: Shannon Deminick Date: Sat, 2 Feb 2013 03:22:30 +0600 Subject: [PATCH] Fixed naming conventions: TypedContentAtRoot and TypedMediaAtRoot instead of TypedContentsAtRoot and TypedMediasAtRoot. --- src/Umbraco.Web/UmbracoHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web/UmbracoHelper.cs b/src/Umbraco.Web/UmbracoHelper.cs index 9e70a956ee..1e1467b790 100644 --- a/src/Umbraco.Web/UmbracoHelper.cs +++ b/src/Umbraco.Web/UmbracoHelper.cs @@ -480,7 +480,7 @@ namespace Umbraco.Web return TypedContent(ids.ToArray()); } - public IEnumerable TypedContentsAtRoot() + public IEnumerable TypedContentAtRoot() { return TypedDocumentsAtRoot(PublishedContentStoreResolver.Current.PublishedContentStore); } @@ -594,7 +594,7 @@ namespace Umbraco.Web return TypedMedia(ids.ToArray()); } - public IEnumerable TypedMediasAtRoot() + public IEnumerable TypedMediaAtRoot() { return TypedDocumentsAtRoot(PublishedMediaStoreResolver.Current.PublishedMediaStore); }