aboutsummaryrefslogtreecommitdiff
path: root/docs/users/versioning.reference.md
diff options
context:
space:
mode:
authorPhoebe <20694052+PhoebeHui@users.noreply.github.com>2021-04-30 04:39:50 +0800
committerGitHub <noreply@github.com>2021-04-29 13:39:50 -0700
commit713e3aeb3f04a2ef9a1df3c411f937e2dbcdb875 (patch)
treea043241de45a505f9e5fc9c68392f2fab5f18a72 /docs/users/versioning.reference.md
parent4f942e1b11b43c2ee9399bb20cc775642d4f5c55 (diff)
downloadvcpkg-713e3aeb3f04a2ef9a1df3c411f937e2dbcdb875.tar.gz
vcpkg-713e3aeb3f04a2ef9a1df3c411f937e2dbcdb875.zip
[docs] Fix broken links (#17566)
* [docs] Fix broken links * Fix the charactor * Update the charactor
Diffstat (limited to 'docs/users/versioning.reference.md')
-rw-r--r--docs/users/versioning.reference.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/users/versioning.reference.md b/docs/users/versioning.reference.md
index 976b84612..4bf367861 100644
--- a/docs/users/versioning.reference.md
+++ b/docs/users/versioning.reference.md
@@ -9,7 +9,7 @@
* [Version constraints](#version-constraints)
## Version schemes
-Ports in vcpkg should attempt to follow the versioning conventions used by the package’s authors. For that reason, when declaring a package’s version the appropriate scheme should be used.
+Ports in vcpkg should attempt to follow the versioning conventions used by the package's authors. For that reason, when declaring a package's version the appropriate scheme should be used.
Each versioning scheme defines its own rules on what is a valid version string and more importantly the rules for how to sort versions using the same scheme.
@@ -172,7 +172,7 @@ Accepts a Git commit ID. Vcpkg will try to find a baseline file in the given com
When resolving version constraints for a package, vcpkg will look for a baseline version:
* First by looking at the baseline file in the given commit ID.
* If the given commit ID does not contain a baseline file, vcpkg will fallback to use the local baseline file instead.
-* If there’s no local baseline file, vcpkg will use the version currently available in the ports directory.
+* If there's no local baseline file, vcpkg will use the version currently available in the ports directory.
_NOTE: If a baseline file is found, but it does not contain an entry for the package, the vcpkg invocation will fail._
@@ -186,7 +186,7 @@ Example:
}
```
-Baselines can be used without any other version constraints to obtain behavior close to using “classic” mode.
+Baselines can be used without any other version constraints to obtain behavior close to using "classic" mode.
### `version>=`
Expresses a minimum version requirement, `version>=` declarations put a lower boundary on the versions that can be used to satisfy a dependency.