From dbca1da71ef40827f70611e00d15fa841b368603 Mon Sep 17 00:00:00 2001 From: David Goss Date: Wed, 9 Aug 2023 07:56:20 +0100 Subject: [PATCH] fix: correct example syntax for java client Signed-off-by: David Goss --- clients/java/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/java/README.md b/clients/java/README.md index cefdb680ad..21bd5a548b 100644 --- a/clients/java/README.md +++ b/clients/java/README.md @@ -25,7 +25,7 @@ implementation 'io.github.marquezproject:marquez-java:0.39.0 ### Reading Metadata ```java // Connect to http://localhost:5000 -MarquezClient client = MarquezClient().builder() +MarquezClient client = MarquezClient.builder() .baseUrl("http://localhost:5000") .build() @@ -59,4 +59,4 @@ MarquezClient client = MarquezClient.builder() ---- SPDX-License-Identifier: Apache-2.0 -Copyright 2018-2023 contributors to the Marquez project. \ No newline at end of file +Copyright 2018-2023 contributors to the Marquez project.