From d5189a76a8a4fd0f9a787f1a8312bfaf3cc72144 Mon Sep 17 00:00:00 2001 From: Ted Logan Date: Mon, 1 May 2023 20:14:33 -0700 Subject: [PATCH] Fix typo in example code Fix a typo terminating the `target_compatible_with` line. The fix makes it easier to copy and paste the relevant portion from the code example. Closes #18195. PiperOrigin-RevId: 528648697 Change-Id: I4491ea2df386df141f20a0df91b2e099c90cae51 --- site/en/extending/platforms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/en/extending/platforms.md b/site/en/extending/platforms.md index 3fa20dc7eca38c..8ee9b7c3735e3e 100644 --- a/site/en/extending/platforms.md +++ b/site/en/extending/platforms.md @@ -226,7 +226,7 @@ cc_library( target_compatible_with = select({ "@platforms//cpu:arm": ["@platforms//:incompatible"], "//conditions:default": [], - ], + }), ) ```