Skip to content

Commit

Permalink
Fixed a syntax error in the spelling of the name of the method GetAll…
Browse files Browse the repository at this point in the history
…ManifestFileContents(..).
  • Loading branch information
devinbost committed Jan 8, 2015
1 parent 4c5cc93 commit a1bca2e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Umbraco.Core/Manifest/ManifestParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ internal static IEnumerable<ParameterEditor> GetParameterEditors(JArray jsonEdit
public IEnumerable<PackageManifest> GetManifests()
{
//get all Manifest.js files in the appropriate folders
var manifestFileContents = GetAllManfifestFileContents(_pluginsDir);
var manifestFileContents = GetAllManifestFileContents(_pluginsDir);
return CreateManifests(manifestFileContents.ToArray());
}

Expand All @@ -69,7 +69,7 @@ public IEnumerable<PackageManifest> GetManifests()
/// </summary>
/// <param name="currDir"></param>
/// <returns></returns>
private IEnumerable<string> GetAllManfifestFileContents(DirectoryInfo currDir)
private IEnumerable<string> GetAllManifestFileContents(DirectoryInfo currDir)
{
var depth = FolderDepth(_pluginsDir, currDir);

Expand All @@ -79,7 +79,7 @@ private IEnumerable<string> GetAllManfifestFileContents(DirectoryInfo currDir)
var result = new List<string>();
foreach (var d in dirs)
{
result.AddRange(GetAllManfifestFileContents(d));
result.AddRange(GetAllManifestFileContents(d));
}
return result;
}
Expand Down

0 comments on commit a1bca2e

Please sign in to comment.