Skip to content

Commit dc62930

Browse files
authored
Update README.md
Added missing semicolon to example code.
1 parent 7467408 commit dc62930

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ObjectivePaths is a wrapper for .NET filesystem operations. ObjectivePaths attem
1111
var fileTwoLevelsDown = directory.GetDirectory("A").GetDirectry("B").GetFile("C.txt");
1212

1313
// LINQ Querying:
14-
var bigFilesInDirectoryB = directory.GetFiles().Where(x=> x.Length > 10737418240)
14+
var bigFilesInDirectoryB = directory.GetFiles().Where(x=> x.Length > 10737418240);
1515

1616

1717
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.

0 commit comments

Comments
 (0)