Skip to content

Commit

Permalink
Text in angle brackets needs to be escaped for the docsite. (pantsbui…
Browse files Browse the repository at this point in the history
…ld#15046)

[ci skip-rust]
  • Loading branch information
kaos authored Apr 7, 2022
1 parent 902a65b commit 39fee2d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ApacheThriftSubsystem(Subsystem):
Specify absolute paths to directories with the `thrift` binary, e.g. `/usr/bin`.
Earlier entries will be searched first.
The special string '<PATH>' will expand to the contents of the PATH env var.
The special string `"<PATH>"` will expand to the contents of the PATH env var.
"""
),
)
Expand Down
2 changes: 1 addition & 1 deletion src/python/pants/backend/go/subsystems/golang.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class GolangSubsystem(Subsystem):
"A list of paths to search for Go.\n\n"
"Specify absolute paths to directories with the `go` binary, e.g. `/usr/bin`. "
"Earlier entries will be searched first.\n\n"
"The special string '<PATH>' will expand to the contents of the PATH env var."
'The special string `"<PATH>"` will expand to the contents of the PATH env var.'
),
)
# TODO(#13005): Support multiple Go versions in a project?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class PexRuntimeEnvironment(Subsystem):
default=["<PATH>"],
help=(
"The PATH value that will be used by the PEX subprocess and any subprocesses it "
'spawns.\n\nThe special string "<PATH>" will expand to the contents of the PATH '
'spawns.\n\nThe special string `"<PATH>"` will expand to the contents of the PATH '
"env var."
),
advanced=True,
Expand Down
2 changes: 1 addition & 1 deletion src/python/pants/backend/shell/shell_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class ShellSetup(Subsystem):
help=(
"The PATH value that will be used to find shells and to run certain processes "
"like the shunit2 test runner.\n\n"
'The special string "<PATH>" will expand to the contents of the PATH env var.'
'The special string `"<PATH>"` will expand to the contents of the PATH env var.'
),
advanced=True,
metavar="<binary-paths>",
Expand Down

0 comments on commit 39fee2d

Please sign in to comment.