aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alex@karatarakis.com>2017-10-01 23:08:22 -0700
committerGitHub <noreply@github.com>2017-10-01 23:08:22 -0700
commitb2ec8fa522c89b789df9b4ee7b8576462eab7eaf (patch)
tree0601d2cd049acd8d21f4051aa7e04f9fac4359c7
parentf439bea8783826a48b2deec3703e0856e5395dac (diff)
parent3af00c8a1e598a38b3376c4dbd96aa10ff766fb8 (diff)
downloadvcpkg-b2ec8fa522c89b789df9b4ee7b8576462eab7eaf.tar.gz
vcpkg-b2ec8fa522c89b789df9b4ee7b8576462eab7eaf.zip
Merge pull request #1894 from amincheloh/patch-1
[vcpkg-docs] Update CONTROL file
-rw-r--r--docs/maintainers/control-files.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/maintainers/control-files.md b/docs/maintainers/control-files.md
index e446fe6fa..17cb50311 100644
--- a/docs/maintainers/control-files.md
+++ b/docs/maintainers/control-files.md
@@ -42,10 +42,10 @@ Unlike dpkg, Vcpkg does not distinguish between build-only dependencies and runt
*For example: websocketpp is a header only library, and thus does not require any dependencies at install time. However, downstream users need boost and openssl to make use of the library. Therefore, websocketpp lists boost and openssl as dependencies*
-Dependencies can be filtered based on the target triplet to support different requirements on Windows Desktop versus the Universal Windows Platform. Currently, the string inside brackets is substring-compared against the triplet name. __This will change in a future version to not depend on the triplet name.__
+Dependencies can be filtered based on the target triplet to support different requirements on Windows Desktop versus the Universal Windows Platform. Currently, the string inside parentheses is substring-compared against the triplet name. __This will change in a future version to not depend on the triplet name.__
Example:
```no-highlight
-Build-Depends: zlib [windows], openssl [windows], boost [windows], websocketpp [windows]
+Build-Depends: zlib (windows), openssl (windows), boost (windows), websocketpp (windows)
```