Skip to content

Commit

Permalink
Merge pull request #1 from devinbost/master
Browse files Browse the repository at this point in the history
Fixed a syntax error in the spelling of the name of a method.
  • Loading branch information
devinbost committed Jan 8, 2015
2 parents 4c5cc93 + a1bca2e commit f6677aa
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 f6677aa

Please sign in to comment.