diff --git a/specification.json b/specification.json index 3cffa1f0..1a35eccd 100644 --- a/specification.json +++ b/specification.json @@ -368,7 +368,7 @@ { "id": "Requirement 2.1.2", "machine_id": "requirement_2_1_2", - "content": "The provider MAY define an `allFlagMetadata` field or accessor of type collection of [flag_metadata](../types.md", + "content": "The provider MAY define an `allFlagMetadata` field or accessor of type collection of flag_metadata, which identifies all available flag keys in the provider.", "RFC 2119 keyword": "MAY", "children": [] }, diff --git a/specification/sections/02-providers.md b/specification/sections/02-providers.md index 08eca6bd..f73344fe 100644 --- a/specification/sections/02-providers.md +++ b/specification/sections/02-providers.md @@ -28,7 +28,7 @@ provider.getMetadata().getName(); // "my-custom-provider" #### Requirement 2.1.2 -> The provider **MAY** define an `allFlagMetadata` field or accessor of type collection of [flag_metadata](../types.md#flag-metadata), which identifies all available flag keys in the provider. +> The provider **MAY** define an `allFlagMetadata` field or accessor of type collection of flag_metadata, which identifies all available flag keys in the provider. ```typescript provider.getAllFlagMetadata(); // [{"key": "featureA", "type": "boolean"}, {"key": "featureB", "type": "string"}]