From cb715964adac2b4d7753a6e9d50d096d4e194c0c Mon Sep 17 00:00:00 2001 From: Todd Baert Date: Wed, 28 Jun 2023 15:29:33 -0400 Subject: [PATCH] fixup: revert 1.1.3 Signed-off-by: Todd Baert --- specification.json | 2 +- specification/sections/01-flag-evaluation.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/specification.json b/specification.json index bf78529e..f77a4210 100644 --- a/specification.json +++ b/specification.json @@ -31,7 +31,7 @@ { "id": "Requirement 1.1.3", "machine_id": "requirement_1_1_3", - "content": "The `API` MUST provide a function to bind a given `provider` to a client `name`. If the client-name already has a bound provider, it is overwritten with the new mapping.", + "content": "The `API` MUST provide a function to bind a given `provider` to one or more client `name`s. If the client-name already has a bound provider, it is overwritten with the new mapping.", "RFC 2119 keyword": "MUST", "children": [] }, diff --git a/specification/sections/01-flag-evaluation.md b/specification/sections/01-flag-evaluation.md index 877bee2c..d21df4eb 100644 --- a/specification/sections/01-flag-evaluation.md +++ b/specification/sections/01-flag-evaluation.md @@ -56,7 +56,7 @@ see: [shutdown](./02-providers.md#25-shutdown), [setting a provider](#setting-a- #### Requirement 1.1.3 -> The `API` **MUST** provide a function to bind a given `provider` to a client `name`. If the client-name already has a bound provider, it is overwritten with the new mapping. +> The `API` **MUST** provide a function to bind a given `provider` to one or more client `name`s. If the client-name already has a bound provider, it is overwritten with the new mapping. ```java OpenFeature.setProvider("client-name", new MyProvider());