Skip to content

Commit ef5a008

Browse files
authored
Fix incorrect description of output (#4310)
1 parent 9b68bf2 commit ef5a008

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

language/types/string.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -974,11 +974,11 @@ echo "This works: {$obj->values[3]->name}";
974974
975975
echo "This works: {$obj->$staticProp}";
976976
977-
// Won't work, outputs: C:\folder\{fantastic}.txt
978-
echo "C:\folder\{$great}.txt";
977+
// Won't work, outputs: C:\directory\{fantastic}.txt
978+
echo "C:\directory\{$great}.txt";
979979
980-
// Works, outputs: C:\folder\fantastic.txt
981-
echo "C:\\folder\\{$great}.txt";
980+
// Works, outputs: C:\directory\fantastic.txt
981+
echo "C:\\directory\\{$great}.txt";
982982
?>
983983
]]>
984984
</programlisting>

0 commit comments

Comments
 (0)