Skip to content

Commit 4bbd278

Browse files
committed
Merge pull request umbraco#618 from devinbost/dev-v7
Fixed a syntax error in the spelling of the name of a method.
2 parents 4c5cc93 + f6677aa commit 4bbd278

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Umbraco.Core/Manifest/ManifestParser.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ internal static IEnumerable<ParameterEditor> GetParameterEditors(JArray jsonEdit
6060
public IEnumerable<PackageManifest> GetManifests()
6161
{
6262
//get all Manifest.js files in the appropriate folders
63-
var manifestFileContents = GetAllManfifestFileContents(_pluginsDir);
63+
var manifestFileContents = GetAllManifestFileContents(_pluginsDir);
6464
return CreateManifests(manifestFileContents.ToArray());
6565
}
6666

@@ -69,7 +69,7 @@ public IEnumerable<PackageManifest> GetManifests()
6969
/// </summary>
7070
/// <param name="currDir"></param>
7171
/// <returns></returns>
72-
private IEnumerable<string> GetAllManfifestFileContents(DirectoryInfo currDir)
72+
private IEnumerable<string> GetAllManifestFileContents(DirectoryInfo currDir)
7373
{
7474
var depth = FolderDepth(_pluginsDir, currDir);
7575

@@ -79,7 +79,7 @@ private IEnumerable<string> GetAllManfifestFileContents(DirectoryInfo currDir)
7979
var result = new List<string>();
8080
foreach (var d in dirs)
8181
{
82-
result.AddRange(GetAllManfifestFileContents(d));
82+
result.AddRange(GetAllManifestFileContents(d));
8383
}
8484
return result;
8585
}

0 commit comments

Comments
 (0)