doc: fix typo in code example

This commit is contained in:
Philipp Scheit 2022-06-08 10:37:44 +02:00 committed by GitHub
parent 741d54c32e
commit eebc6511a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -211,7 +211,7 @@ try {
// Should print something similar to:
// > Expected a value to start with "foo_". Got: "bar_baz"
foreach ($errorsMessages as $message) {
foreach ($errorMessages as $message) {
echo $message;
}
}