From c031164189bf324ec1408a82caf7b4f4bfd38882 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 16 Aug 2026 21:19:06 +0000 Subject: [PATCH] docs(go): drop embed_test from the internal-variants list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The go provider no longer generates embed / embed_test / embed_xtest targets — go_compile resolves the //go:embed config in-process now (hephbuild/heph#400). Remove the stale embed_test mention from the "Generated targets" internal-variants list in the heph-go plugin reference; the other names there are still accurate. Ref: hephbuild/heph@6a546a71360e8548eaedc37920f7c0fdb493c3fd --- plugins/heph-go/skills/heph-go/references/go-plugin.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/heph-go/skills/heph-go/references/go-plugin.md b/plugins/heph-go/skills/heph-go/references/go-plugin.md index 807cea9..a9c676a 100644 --- a/plugins/heph-go/skills/heph-go/references/go-plugin.md +++ b/plugins/heph-go/skills/heph-go/references/go-plugin.md @@ -94,9 +94,9 @@ There is also `:xtest` for external (`package foo_test`) tests, and their race-detector counterparts `:test_race` / `:xtest_race` (labels `test-race`, `go-test-race` — see "Race detector" below). A number of internal variants exist to make compilation and linking agree (`build_test_lib`, -`build_xtest_lib`, `build_testmain_lib`, `testmain`, `embed_test`, etc., plus a -per-package `_golist`). These are implementation detail — don't depend on them -by hand; depend on `:build`, `:test`, `:xtest`, `:test_race`, `:xtest_race`. +`build_xtest_lib`, `build_testmain_lib`, `testmain`, etc., plus a per-package +`_golist`). These are implementation detail — don't depend on them by hand; +depend on `:build`, `:test`, `:xtest`, `:test_race`, `:xtest_race`. Inspect what exists: