Skip to content

Commit

Permalink
Fix syntax error in example
Browse files Browse the repository at this point in the history
  • Loading branch information
jordikroon authored Apr 13, 2017
1 parent a416113 commit 6461414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ $response = $vision->getRequest(
$faces = $response->getFaceAnnotations();
foreach ($faces as $face) {
foreach ($face->getBoundingPoly()->getVertices() as $vertex) {
echo sprintf('Person at position X %f and Y %f', $vertex->getX(), $vertex->getY())
echo sprintf('Person at position X %f and Y %f', $vertex->getX(), $vertex->getY());
}
}
```
Expand Down

0 comments on commit 6461414

Please sign in to comment.