Skip to content

Commit 17d3868

Browse files
authored
Rollup merge of #98636 - ehuss:mentions-wrapping, r=Mark-Simulacrum
Triagebot: Fix mentions word wrapping. I forgot that GitHub's markdown treats newlines as hard breaks. This was causing some ugly-looking word wrapping in the triagebot mention messages. This fixes it so that the lines are not hard-wrapped.
2 parents 96bb98c + b292d94 commit 17d3868

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

triagebot.toml

+13-13
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ changelog-branch = "master"
219219

220220
[mentions."compiler/rustc_apfloat"]
221221
message = """
222-
Changes rustc_apfloat. rustc_apfloat is currently in limbo and you almost
222+
Changes rustc_apfloat. rustc_apfloat is currently in limbo and you almost \
223223
certainly don't want to change it (see #55993).
224224
"""
225225
cc = ["@eddyb"]
@@ -258,22 +258,22 @@ cc = ["@GuillaumeGomez"]
258258
message = """
259259
Hey! It looks like you've submitted a new PR for the library teams!
260260
261-
If this PR contains changes to any `rust-lang/rust` public library APIs then
262-
please comment with `@rustbot label +T-libs-api -T-libs` to tag it
263-
appropriately. If this PR contains changes to any unstable APIs please edit
264-
the PR description to add a link to the relevant [API Change
265-
Proposal](https://std-dev-guide.rust-lang.org/feature-lifecycle/api-change-proposals.html)
266-
or [create one](https://github.com/rust-lang/libs-team/issues/new?assignees=&labels=api-change-proposal%2C+T-libs-api&template=api-change-proposal.md&title=%28My+API+Change+Proposal%29)
267-
if you haven't already. If you're unsure where your change falls no worries,
268-
just leave it as is and the reviewer will take a look and make a decision to
261+
If this PR contains changes to any `rust-lang/rust` public library APIs then \
262+
please comment with `@rustbot label +T-libs-api -T-libs` to tag it \
263+
appropriately. If this PR contains changes to any unstable APIs please edit \
264+
the PR description to add a link to the relevant [API Change \
265+
Proposal](https://std-dev-guide.rust-lang.org/feature-lifecycle/api-change-proposals.html) \
266+
or [create one](https://github.com/rust-lang/libs-team/issues/new?assignees=&labels=api-change-proposal%2C+T-libs-api&template=api-change-proposal.md&title=%28My+API+Change+Proposal%29) \
267+
if you haven't already. If you're unsure where your change falls no worries, \
268+
just leave it as is and the reviewer will take a look and make a decision to \
269269
forward on if necessary.
270270
271271
Examples of `T-libs-api` changes:
272272
273273
* Stabilizing library features
274-
* Introducing insta-stable changes such as new implementations of existing
274+
* Introducing insta-stable changes such as new implementations of existing \
275275
stable traits on existing stable types
276-
* Introducing new or changing existing unstable library APIs (excluding
276+
* Introducing new or changing existing unstable library APIs (excluding \
277277
permanently unstable features / features without a tracking issue)
278278
* Changing public documentation in ways that create new stability guarantees
279279
* Changing observable runtime behavior of library APIs
@@ -300,8 +300,8 @@ cc = ["@Cldfire"]
300300

301301
[mentions."src/rustdoc-json-types"]
302302
message = """
303-
rustdoc-json-types is a **public** (although nightly-only) API.
304-
If possible, consider changing `src/librustdoc/json/conversions.rs`;
303+
rustdoc-json-types is a **public** (although nightly-only) API. \
304+
If possible, consider changing `src/librustdoc/json/conversions.rs`; \
305305
otherwise, make sure you bump the `FORMAT_VERSION` constant.
306306
"""
307307
cc = [

0 commit comments

Comments
 (0)