From 61ef59de027168c7950592dc31ff969286cdfd64 Mon Sep 17 00:00:00 2001 From: Aravind M Date: Sun, 11 Aug 2019 23:36:27 +0530 Subject: [PATCH] fix code example containing syntax error (#890) --- ambassador/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ambassador/README.md b/ambassador/README.md index f23d1e13c..616604c27 100644 --- a/ambassador/README.md +++ b/ambassador/README.md @@ -43,7 +43,7 @@ A remote services represented as a singleton. public class RemoteService implements RemoteServiceInterface { private static final Logger LOGGER = LoggerFactory.getLogger(RemoteService.class); - private static RemoteService service = null;2 + private static RemoteService service = null; static synchronized RemoteService getRemoteService() { if (service == null) {