Skip to content

Commit

Permalink
[docs] Link fixes (microsoft#26956)
Browse files Browse the repository at this point in the history
  • Loading branch information
ras0219-msft authored Sep 23, 2022
1 parent c5ca6fd commit 57d3194
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/maintainers/vcpkg_from_gitlab.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ At least one of `REF` and `HEAD_REF` must be specified, however it is preferable
This exports the `VCPKG_HEAD_VERSION` variable during head builds.

## Examples:
* [curl][https://github.com/Microsoft/vcpkg/blob/master/ports/curl/portfile.cmake#L75]
* [curl](https://github.com/Microsoft/vcpkg/blob/master/ports/curl/portfile.cmake#L75)
* [folly](https://github.com/Microsoft/vcpkg/blob/master/ports/folly/portfile.cmake#L15)
* [z3](https://github.com/Microsoft/vcpkg/blob/master/ports/z3/portfile.cmake#L13)

Expand Down
10 changes: 5 additions & 5 deletions docs/users/versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ Examples:

### Baselines

Baselines define a global version floor for what versions will be considered. This enables top-level manifests to keep the entire graph of dependencies up-to-date without needing to individually specify direct [`"version>="`][] constraints.
Baselines define a global version floor for what versions will be considered. This enables top-level manifests to keep the entire graph of dependencies up-to-date without needing to individually specify direct [`"version>="`][version-gte] constraints.

Every configured registry has an associated baseline. For manifests that don't configure any registries, the [`"builtin-baseline"`][] field defines the baseline for the built-in registry. If a manifest does not configure any registries and does not have a [`"builtin-baseline"`][], the install operates according to the Classic Mode algorithm and ignores all versioning information.
Every configured registry has an associated baseline. For manifests that don't configure any registries, the [`"builtin-baseline"`][builtin-baseline] field defines the baseline for the built-in registry. If a manifest does not configure any registries and does not have a [`"builtin-baseline"`][builtin-baseline], the install operates according to the Classic Mode algorithm and ignores all versioning information.

Baselines, like other registry settings, are ignored from ports consumed as a dependency. If a minimum version is required during transitive version resolution the port should use [`"version>="`][].
Baselines, like other registry settings, are ignored from ports consumed as a dependency. If a minimum version is required during transitive version resolution the port should use [`"version>="`][version-gte].

**Example**
```json
Expand Down Expand Up @@ -170,5 +170,5 @@ For an override to take effect, the overridden package must form part of the dep
* The [implementation details](versioning.implementation-details.md)
* The [original specification](../specifications/versioning.md)

[`"version>="`]: #version-gte
[`"builtin-baseilne"`]: manifests.md#builtin-baseline
[version-gte]: #version-gte
[builtin-baseline]: manifests.md#builtin-baseline

0 comments on commit 57d3194

Please sign in to comment.