Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Added missing semicolon to example code.
  • Loading branch information
vector-man authored Jun 12, 2023
1 parent 7467408 commit dc62930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ObjectivePaths is a wrapper for .NET filesystem operations. ObjectivePaths attem
var fileTwoLevelsDown = directory.GetDirectory("A").GetDirectry("B").GetFile("C.txt");

// LINQ Querying:
var bigFilesInDirectoryB = directory.GetFiles().Where(x=> x.Length > 10737418240)
var bigFilesInDirectoryB = directory.GetFiles().Where(x=> x.Length > 10737418240);


Contributors: please review LICENSE.txt before using the library or submitting a contribution. All Subissions must be released under the MIT License (https://opensource.org/license/mit/) in order to be compatible with the project's dual-license model.
Expand Down

0 comments on commit dc62930

Please sign in to comment.