From 7ed7442c40d4e766424671258846b21a96adda70 Mon Sep 17 00:00:00 2001 From: Todd Baert Date: Thu, 12 Jan 2023 12:04:32 -0500 Subject: [PATCH] fix: links and link checks (#172) Signed-off-by: Todd Baert --- Makefile | 2 +- specification/glossary.md | 2 +- specification/sections/02-providers.md | 2 +- specification/types.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 25ba2e85..54e8d86f 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ parse: _check_python lint: node_modules @python ./tools/specification_parser/lint_json_output.py specification.json ./node_modules/.bin/markdownlint --ignore node_modules/ --ignore tools/ **/*.md - ./node_modules/.bin/markdown-link-check -c .markdown-link-check-config.json README.md specification/*.md + ./node_modules/.bin/markdown-link-check -c .markdown-link-check-config.json README.md specification/*.md specification/**/*.md fix: node_modules prettier -w **/*.md diff --git a/specification/glossary.md b/specification/glossary.md index 98877c83..8814f908 100644 --- a/specification/glossary.md +++ b/specification/glossary.md @@ -92,7 +92,7 @@ A source-of-truth for flag values and rules. Flag management systems may include ### Provider -An SDK-compliant implementation which resolves flag values from a particular flag management system, allowing the use of the [Evaluation API](./sections/01-flag-evaluation.md#flag-evaluation) as an abstraction for the system in question. +An SDK-compliant implementation which resolves flag values from a particular flag management system, allowing the use of the [Evaluation API](./sections/01-flag-evaluation.md#13-flag-evaluation) as an abstraction for the system in question. ### Integration diff --git a/specification/sections/02-providers.md b/specification/sections/02-providers.md index 14d69b9a..a433b163 100644 --- a/specification/sections/02-providers.md +++ b/specification/sections/02-providers.md @@ -39,7 +39,7 @@ provider.getMetadata().getName(); // "my-custom-provider" resolveBooleanValue(flagKey, defaultValue, context); ``` -see: [flag resolution structure](../types.md#resolution-details), [flag value resolution](../glossary.md#flag-value-resolution) +see: [flag resolution structure](../types.md#resolution-details), [flag value resolution](../glossary.md#resolving-flag-values) ##### Condition 2.2.2 diff --git a/specification/types.md b/specification/types.md index 8ee7dce1..9cbc441a 100644 --- a/specification/types.md +++ b/specification/types.md @@ -32,7 +32,7 @@ A language primitive for representing a date and time, optionally including time ### Evaluation Details -A structure representing the result of the [flag evaluation process](./glossary.md#evaluating-flag-values), and made available in the [detailed flag resolution functions](./sections/01-flag-evaluation.md#detailed-flag-evaluation), containing the following fields: +A structure representing the result of the [flag evaluation process](./glossary.md#evaluating-flag-values), and made available in the [detailed flag resolution functions](./sections/01-flag-evaluation.md#14-detailed-flag-evaluation), containing the following fields: - flag key (string, required) - value (boolean | string | number | structure, required)