Skip to content

Commit

Permalink
fix: links and link checks (#172)
Browse files Browse the repository at this point in the history
Signed-off-by: Todd Baert <[email protected]>
  • Loading branch information
toddbaert authored Jan 12, 2023
1 parent 8ebe27b commit 7ed7442
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion specification/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion specification/sections/02-providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion specification/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7ed7442

Please sign in to comment.