summaryrefslogtreecommitdiff
path: root/doc/classes/DirAccess.xml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/classes/DirAccess.xml')
-rw-r--r--doc/classes/DirAccess.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/DirAccess.xml b/doc/classes/DirAccess.xml
index 181d2eb485..27f2eb7f2f 100644
--- a/doc/classes/DirAccess.xml
+++ b/doc/classes/DirAccess.xml
@@ -44,11 +44,11 @@
{
if (dir.CurrentIsDir())
{
- GD.Print("Found directory: " + fileName);
+ GD.Print($"Found directory: {fileName}");
}
else
{
- GD.Print("Found file: " + fileName);
+ GD.Print($"Found file: {fileName}");
}
fileName = dir.GetNext();
}