Removed unnecessary curly braces

This commit is contained in:
kwkofler 2014-03-08 14:14:24 -05:00
parent bbdc972011
commit 3bc9b29957
1 changed files with 0 additions and 2 deletions

View File

@ -349,7 +349,6 @@ Callback gets `(error, stats)`, where `stats` is an object with the following pr
The following convenience methods are also present on the callback's `stats`:
```
{
isFile(): Returns true if the node is a file.
isDirectory(): Returns true if the node is a directory.
isBlockDevice(): Not implemented, returns false.
@ -357,7 +356,6 @@ isCharacterDevice(): Not implemented, returns false.
isSymbolicLink(): Returns true if the node is a symbolic link.
isFIFO(): Not implemented, returns false.
isSocket(): Not implemented, returns false.
}
```
If the file at `path` is a symbolic link, the file to which it links will be used instead.