Merge pull request #618 from devinbost/dev-v7

Fixed a syntax error in the spelling of the name of a method.
This commit is contained in:
Shannon Deminick
2015-01-08 15:27:57 +11:00

View File

@@ -60,7 +60,7 @@ namespace Umbraco.Core.Manifest
public IEnumerable<PackageManifest> GetManifests() public IEnumerable<PackageManifest> GetManifests()
{ {
//get all Manifest.js files in the appropriate folders //get all Manifest.js files in the appropriate folders
var manifestFileContents = GetAllManfifestFileContents(_pluginsDir); var manifestFileContents = GetAllManifestFileContents(_pluginsDir);
return CreateManifests(manifestFileContents.ToArray()); return CreateManifests(manifestFileContents.ToArray());
} }
@@ -69,7 +69,7 @@ namespace Umbraco.Core.Manifest
/// </summary> /// </summary>
/// <param name="currDir"></param> /// <param name="currDir"></param>
/// <returns></returns> /// <returns></returns>
private IEnumerable<string> GetAllManfifestFileContents(DirectoryInfo currDir) private IEnumerable<string> GetAllManifestFileContents(DirectoryInfo currDir)
{ {
var depth = FolderDepth(_pluginsDir, currDir); var depth = FolderDepth(_pluginsDir, currDir);
@@ -79,7 +79,7 @@ namespace Umbraco.Core.Manifest
var result = new List<string>(); var result = new List<string>();
foreach (var d in dirs) foreach (var d in dirs)
{ {
result.AddRange(GetAllManfifestFileContents(d)); result.AddRange(GetAllManifestFileContents(d));
} }
return result; return result;
} }