Skip to content

Commit

Permalink
pascal cased one public method, incremented version number
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkis117 committed Mar 4, 2017
1 parent 9214d28 commit 280c445
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Mime-Detective/Extensions/FileInfo/FileInfoExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static async Task<FileType> GetFileTypeAsync(this FileInfo file)
/// <returns>
/// <c>true</c> if file of the one of the provided types; otherwise, <c>false</c>.
/// </returns>
public static bool isFileOfTypes(this FileInfo file, List<FileType> requiredTypes)
public static bool IsFileOfTypes(this FileInfo file, List<FileType> requiredTypes)
{
FileType currentType = file.GetFileType();

Expand All @@ -60,11 +60,11 @@ public static bool isFileOfTypes(this FileInfo file, List<FileType> requiredType
/// <returns>
/// <c>true</c> if file of the one of the provided types; otherwise, <c>false</c>.
/// </returns>
public static bool isFileOfTypes(this FileInfo file, String CSV)
public static bool IsFileOfTypes(this FileInfo file, String CSV)
{
List<FileType> providedTypes = MimeTypes.GetFileTypesByExtensions(CSV);

return file.isFileOfTypes(providedTypes);
return file.IsFileOfTypes(providedTypes);
}


Expand Down
2 changes: 1 addition & 1 deletion src/Mime-Detective/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

"name": "Mime-Detective",
"title": "Mime-Detective",
"version": "0.0.1",
"version": "0.0.2",
"description": "Mime-Detective Class Library, .NET Core Fork",
"authors": [ "Mime-Detective Collaborators" ],

Expand Down

0 comments on commit 280c445

Please sign in to comment.