From 0fb6a2b3a3dd66449a394945f878c858063a20f2 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Mon, 30 Nov 2015 09:27:01 +0300 Subject: [PATCH] Dir object doesn't have operator bool (fix #1037) --- doc/filesystem.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/filesystem.md b/doc/filesystem.md index f30bf80cad..4beae1e158 100644 --- a/doc/filesystem.md +++ b/doc/filesystem.md @@ -127,9 +127,7 @@ Returns *true* if a file with given path exists, *false* otherwise. SPIFFS.openDir(path) ``` -Opens a directory given its absolute path. Returns a *Dir* object. To check if -directory was opened successfully, use the boolean operator, similar to opening -a file. +Opens a directory given its absolute path. Returns a *Dir* object. ### remove