From ee80ce2c0dd4d2e2172638f5f3ff225989a85362 Mon Sep 17 00:00:00 2001 From: Thomas Poignant Date: Mon, 14 Aug 2023 21:28:22 +0200 Subject: [PATCH] add comments Signed-off-by: Thomas Poignant --- specification/sections/01-flag-evaluation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/specification/sections/01-flag-evaluation.md b/specification/sections/01-flag-evaluation.md index 8c9b5a85..d8fe7987 100644 --- a/specification/sections/01-flag-evaluation.md +++ b/specification/sections/01-flag-evaluation.md @@ -113,11 +113,11 @@ This function not only sets the provider, but ensures that the provider is ready ```java // default client -OpenFeatureAPI.getInstance().setProviderAndWait(myprovider); -Client client = OpenFeatureAPI.getInstance().getClient(); +OpenFeatureAPI.getInstance().setProviderAndWait(myprovider); // this method blocks until the provider is ready or in error +Client client = OpenFeatureAPI.getInstance().getClient(); // named client -OpenFeatureAPI.getInstance().setProviderAndWait('client-name', myprovider); +OpenFeatureAPI.getInstance().setProviderAndWait('client-name', myprovider); // this method blocks until the provider is ready or in error Client client = OpenFeatureAPI.getInstance().getClient('client-name'); ```