diff --git a/language/types/string.xml b/language/types/string.xml index 4483e52b7b..05633ef509 100644 --- a/language/types/string.xml +++ b/language/types/string.xml @@ -974,11 +974,11 @@ echo "This works: {$obj->values[3]->name}"; echo "This works: {$obj->$staticProp}"; -// Won't work, outputs: C:\folder\{fantastic}.txt -echo "C:\folder\{$great}.txt"; +// Won't work, outputs: C:\directory\{fantastic}.txt +echo "C:\directory\{$great}.txt"; -// Works, outputs: C:\folder\fantastic.txt -echo "C:\\folder\\{$great}.txt"; +// Works, outputs: C:\directory\fantastic.txt +echo "C:\\directory\\{$great}.txt"; ?> ]]>