Fixed naming conventions: TypedContentAtRoot and TypedMediaAtRoot instead of TypedContentsAtRoot and TypedMediasAtRoot.

This commit is contained in:
Shannon Deminick
2013-02-02 03:22:30 +06:00
parent 5d681c18fe
commit d1ac2f11d1

View File

@@ -480,7 +480,7 @@ namespace Umbraco.Web
return TypedContent(ids.ToArray());
}
public IEnumerable<IPublishedContent> TypedContentsAtRoot()
public IEnumerable<IPublishedContent> TypedContentAtRoot()
{
return TypedDocumentsAtRoot(PublishedContentStoreResolver.Current.PublishedContentStore);
}
@@ -594,7 +594,7 @@ namespace Umbraco.Web
return TypedMedia(ids.ToArray());
}
public IEnumerable<IPublishedContent> TypedMediasAtRoot()
public IEnumerable<IPublishedContent> TypedMediaAtRoot()
{
return TypedDocumentsAtRoot(PublishedMediaStoreResolver.Current.PublishedMediaStore);
}