From 646141405e7281172698d833802769ff2f99fd07 Mon Sep 17 00:00:00 2001 From: Jordi Kroon Date: Thu, 13 Apr 2017 15:03:41 +0200 Subject: [PATCH] Fix syntax error in example --- README.MD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.MD b/README.MD index 2f83591..f79047f 100644 --- a/README.MD +++ b/README.MD @@ -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()); } } ```