Fix grammar error in File docs (#883)

This commit is contained in:
Michael Flaherty 2018-09-22 12:27:05 -07:00 committed by GitHub
parent 75193e9ee9
commit 990a02dbe0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,7 +104,7 @@ methodmap DirectoryListing < Handle
// A File object can be obtained by calling OpenFile(). File objects should be
// closed with delete or Close(). Note that, "delete file" does not
// actually a file, it just closes it.
// actually delete the file, it just closes the handle.
methodmap File < Handle
{
// Close the file handle. This is the same as using CloseHandle() or delete.