From 30d36b97e15efb4acb68ce3c86be6ddbe502ff21 Mon Sep 17 00:00:00 2001 From: Grump Date: Thu, 18 Jun 2020 12:59:19 +0200 Subject: [PATCH] updated README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c6e9f69..55f3c40 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Functions that are not available in `love.filesystem`: Returns a list of items in a directory that contains not only the names, but also the information returned by `getInfo` for each item. The return value is a list of files and directories, in which each entry is a table as returned by [getInfo](https://love2d.org/wiki/love.filesystem.getInfo), with an additional `name` field for each entry. * `nativefs.getDriveList()` -Returns a table of all populated drive letters on Windows (`{ 'C:/', 'D:/', ...}`). On systems that don't use drive letters, a table with the single entry `/` is returned. +Returns a table with all populated drive letters on Windows (`{ 'C:/', 'D:/', ...}`). On systems that don't use drive letters, a table with the single entry `/` is returned. * `nativefs.setWorkingDirectory(directory)` Changes the working directory. @@ -62,7 +62,7 @@ Changes the working directory. * [File:typeOf](https://love2d.org/wiki/Object:typeOf) * [File:release](https://love2d.org/wiki/Object:release) -Function names in this list are links to their LÖVE `File` counterparts. `File` is designed to work the same way as LÖVE's `File` class. +Function names in this list are links to their LÖVE `File` counterparts. `File` is designed to work the same way as LÖVE's `File` objects. ## Example