From bb6af8b93beebcac884b1a03764a7acd49f1479b Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Sun, 31 Jan 2021 22:46:34 -0800 Subject: [PATCH] Fix platforms doc typos Closes #12930. PiperOrigin-RevId: 354872148 --- site/docs/platforms.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/docs/platforms.md b/site/docs/platforms.md index 567762d0f4df7b..9d6466201548ee 100644 --- a/site/docs/platforms.md +++ b/site/docs/platforms.md @@ -178,7 +178,7 @@ FAILED: Build did NOT complete successfully For more flexibility in expressing constraints, use the `@platforms//:incompatible` -[`constraint_value`](platform.html#constraint_value) that no platform +[`constraint_value`](be/platform.html#constraint_value) that no platform satisfies. Use [`select()`](functions.html#select) in combination with @@ -195,7 +195,7 @@ cc_library( "@platforms//os:osx": [], "@platforms//os:linux": [], "//conditions:default": ["@platforms//:incompatible"], - ], + }), ) ```