Skip to content

Commit 7ed7442

Browse files
authored
fix: links and link checks (#172)
Signed-off-by: Todd Baert <[email protected]>
1 parent 8ebe27b commit 7ed7442

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ parse: _check_python
77
lint: node_modules
88
@python ./tools/specification_parser/lint_json_output.py specification.json
99
./node_modules/.bin/markdownlint --ignore node_modules/ --ignore tools/ **/*.md
10-
./node_modules/.bin/markdown-link-check -c .markdown-link-check-config.json README.md specification/*.md
10+
./node_modules/.bin/markdown-link-check -c .markdown-link-check-config.json README.md specification/*.md specification/**/*.md
1111

1212
fix: node_modules
1313
prettier -w **/*.md

specification/glossary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ A source-of-truth for flag values and rules. Flag management systems may include
9292

9393
### Provider
9494

95-
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.
95+
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.
9696

9797
### Integration
9898

specification/sections/02-providers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ provider.getMetadata().getName(); // "my-custom-provider"
3939
resolveBooleanValue(flagKey, defaultValue, context);
4040
```
4141

42-
see: [flag resolution structure](../types.md#resolution-details), [flag value resolution](../glossary.md#flag-value-resolution)
42+
see: [flag resolution structure](../types.md#resolution-details), [flag value resolution](../glossary.md#resolving-flag-values)
4343

4444
##### Condition 2.2.2
4545

specification/types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ A language primitive for representing a date and time, optionally including time
3232

3333
### Evaluation Details
3434

35-
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:
35+
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:
3636

3737
- flag key (string, required)
3838
- value (boolean | string | number | structure, required)

0 commit comments

Comments
 (0)