From a1bca2eba15857287736d88749d92d0ca2a2883f Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 7 Jan 2015 19:25:09 -0800 Subject: [PATCH] Fixed a syntax error in the spelling of the name of the method GetAllManifestFileContents(..). --- src/Umbraco.Core/Manifest/ManifestParser.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Umbraco.Core/Manifest/ManifestParser.cs b/src/Umbraco.Core/Manifest/ManifestParser.cs index 49839828fd91..fbc91de898ea 100644 --- a/src/Umbraco.Core/Manifest/ManifestParser.cs +++ b/src/Umbraco.Core/Manifest/ManifestParser.cs @@ -60,7 +60,7 @@ internal static IEnumerable GetParameterEditors(JArray jsonEdit public IEnumerable GetManifests() { //get all Manifest.js files in the appropriate folders - var manifestFileContents = GetAllManfifestFileContents(_pluginsDir); + var manifestFileContents = GetAllManifestFileContents(_pluginsDir); return CreateManifests(manifestFileContents.ToArray()); } @@ -69,7 +69,7 @@ public IEnumerable GetManifests() /// /// /// - private IEnumerable GetAllManfifestFileContents(DirectoryInfo currDir) + private IEnumerable GetAllManifestFileContents(DirectoryInfo currDir) { var depth = FolderDepth(_pluginsDir, currDir); @@ -79,7 +79,7 @@ private IEnumerable GetAllManfifestFileContents(DirectoryInfo currDir) var result = new List(); foreach (var d in dirs) { - result.AddRange(GetAllManfifestFileContents(d)); + result.AddRange(GetAllManifestFileContents(d)); } return result; }