aboutsummaryrefslogtreecommitdiff
path: root/test/testdata/misc_apis_test/golden.md
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2023-12-07 16:07:33 -0800
committerMatthias Männich <maennich@google.com>2023-12-08 15:07:09 +0000
commit16b44b4e060da38bf5613220593fc48350a0aa80 (patch)
tree67a8bb59932347f2f12a853a20c14517dcb35fc8 /test/testdata/misc_apis_test/golden.md
parent85b0f239303220d902ad919ff27d2da475fc12e2 (diff)
parent99421bbcd3f00f600d4bf3f14ef5917c5b671f8c (diff)
downloadstardoc-16b44b4e060da38bf5613220593fc48350a0aa80.tar.gz
Merge tag 'upstream/0.6.2' into main
Bug: 276493276 Change-Id: Ia35937702bbf7634a760801e6cf0c3d28d4436de
Diffstat (limited to 'test/testdata/misc_apis_test/golden.md')
-rw-r--r--[-rwxr-xr-x]test/testdata/misc_apis_test/golden.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/testdata/misc_apis_test/golden.md b/test/testdata/misc_apis_test/golden.md
index 7b94d9f..3e3ef3c 100755..100644
--- a/test/testdata/misc_apis_test/golden.md
+++ b/test/testdata/misc_apis_test/golden.md
@@ -7,7 +7,7 @@
## my_rule
<pre>
-my_rule(<a href="#my_rule-name">name</a>, <a href="#my_rule-deps">deps</a>, <a href="#my_rule-extra_arguments">extra_arguments</a>, <a href="#my_rule-out">out</a>, <a href="#my_rule-src">src</a>, <a href="#my_rule-tool">tool</a>)
+my_rule(<a href="#my_rule-name">name</a>, <a href="#my_rule-deps">deps</a>, <a href="#my_rule-src">src</a>, <a href="#my_rule-out">out</a>, <a href="#my_rule-extra_arguments">extra_arguments</a>, <a href="#my_rule-tool">tool</a>)
</pre>
This rule exercises some of the build API.
@@ -18,11 +18,11 @@ This rule exercises some of the build API.
| Name | Description | Type | Mandatory | Default |
| :------------- | :------------- | :------------- | :------------- | :------------- |
| <a id="my_rule-name"></a>name | A unique name for this target. | <a href="https://bazel.build/concepts/labels#target-names">Name</a> | required | |
-| <a id="my_rule-deps"></a>deps | A list of dependencies. | <a href="https://bazel.build/concepts/labels">List of labels</a> | optional | <code>[]</code> |
-| <a id="my_rule-extra_arguments"></a>extra_arguments | - | List of strings | optional | <code>[]</code> |
+| <a id="my_rule-deps"></a>deps | A list of dependencies. | <a href="https://bazel.build/concepts/labels">List of labels</a> | optional | `[]` |
+| <a id="my_rule-src"></a>src | The source file. | <a href="https://bazel.build/concepts/labels">Label</a> | optional | `None` |
| <a id="my_rule-out"></a>out | The output file. | <a href="https://bazel.build/concepts/labels">Label</a> | required | |
-| <a id="my_rule-src"></a>src | The source file. | <a href="https://bazel.build/concepts/labels">Label</a> | optional | <code>None</code> |
-| <a id="my_rule-tool"></a>tool | The location of the tool to use. | <a href="https://bazel.build/concepts/labels">Label</a> | optional | <code>//foo/bar/baz:target</code> |
+| <a id="my_rule-extra_arguments"></a>extra_arguments | - | List of strings | optional | `[]` |
+| <a id="my_rule-tool"></a>tool | The location of the tool to use. | <a href="https://bazel.build/concepts/labels">Label</a> | optional | `"@io_bazel_stardoc//foo/bar/baz:target"` |
<a id="MyInfo"></a>