Skip to content

Commit

Permalink
Correctly close <code> tag of register_toolchains docs
Browse files Browse the repository at this point in the history
A typo closed it using `</all>` instead of `</code>`

PiperOrigin-RevId: 534159376
Change-Id: I393fd1c9ab779de4078b2668f3f568871c354f68
  • Loading branch information
rickeylev authored and copybara-github committed May 22, 2023
1 parent a67200c commit 02fe7e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ public void registerExecutionPlatforms(boolean devDependency, Sequence<?> platfo
allowedTypes = {@ParamType(type = Sequence.class, generic1 = String.class)},
doc =
"The labels of the toolchains to register. Labels can include "
+ "<code>:all</all>, in which case, all toolchain-providing targets in the "
+ "<code>:all</code>, in which case, all toolchain-providing targets in the "
+ "package will be registered in lexicographical order by name."))
public void registerToolchains(boolean devDependency, Sequence<?> toolchainLabels)
throws EvalException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ void registerExecutionPlatforms(Sequence<?> platformLabels, StarlarkThread threa
allowedTypes = {@ParamType(type = Sequence.class, generic1 = String.class)},
doc =
"The labels of the toolchains to register. Labels can include "
+ "<code>:all</all>, in which case, all toolchain-providing targets in the "
+ "<code>:all</code>, in which case, all toolchain-providing targets in the "
+ "package will be registered in lexicographical order by name."),
useStarlarkThread = true)
void registerToolchains(Sequence<?> toolchainLabels, StarlarkThread thread)
Expand Down

0 comments on commit 02fe7e7

Please sign in to comment.