diff options
| author | bors <bors@rust-lang.org> | 2023-03-27 22:19:56 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-03-27 22:19:56 +0000 |
| commit | 5bf139e3609255f6bdeae0f8dcc40eeb1021148b (patch) | |
| tree | 638e8f08b909ec1ef357423dfd3e6df456eb2fcb /compiler/rustc_error_codes/src | |
| parent | 2036fdd24f77d607dcfaa24c48fbe85d3f785823 (diff) | |
| parent | 904dd2c3987028f0270db306b9964bc465689de8 (diff) | |
| download | rust-5bf139e3609255f6bdeae0f8dcc40eeb1021148b.tar.gz rust-5bf139e3609255f6bdeae0f8dcc40eeb1021148b.zip | |
Auto merge of #109440 - WaffleLapkin:make_tidy_slower, r=jyn514
Don't skip all directories when tidy-checking This fixes a regression from https://github.com/rust-lang/rust/pull/108772 which basically made it that tidy style checks only `README.md` and `COMPILER_TESTS.md`.
Diffstat (limited to 'compiler/rustc_error_codes/src')
| -rw-r--r-- | compiler/rustc_error_codes/src/error_codes/E0080.md | 3 | ||||
| -rw-r--r-- | compiler/rustc_error_codes/src/error_codes/E0794.md | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0080.md b/compiler/rustc_error_codes/src/error_codes/E0080.md index 71d6c6fe2ef..c05324a5a2c 100644 --- a/compiler/rustc_error_codes/src/error_codes/E0080.md +++ b/compiler/rustc_error_codes/src/error_codes/E0080.md @@ -16,7 +16,8 @@ or causing an integer overflow are two ways to induce this error. Ensure that the expressions given can be evaluated as the desired integer type. See the [Discriminants] section of the Reference for more information about -setting custom integer types on enums using the [`repr` attribute][repr-attribute]. +setting custom integer types on enums using the +[`repr` attribute][repr-attribute]. [discriminants]: https://doc.rust-lang.org/reference/items/enumerations.html#discriminants [repr-attribute]: https://doc.rust-lang.org/reference/type-layout.html#representations diff --git a/compiler/rustc_error_codes/src/error_codes/E0794.md b/compiler/rustc_error_codes/src/error_codes/E0794.md index 4377a292473..c8f73de95a2 100644 --- a/compiler/rustc_error_codes/src/error_codes/E0794.md +++ b/compiler/rustc_error_codes/src/error_codes/E0794.md @@ -59,6 +59,6 @@ In the definition of `bar`, the lifetime parameter `'a` is late-bound, while where `'a` is universally quantified and `'b` is substituted by a specific lifetime. It is not allowed to explicitly specify early-bound lifetime arguments when late-bound lifetime parameters are present (as for `bar_fn2`, -see [issue #42868](https://github.com/rust-lang/rust/issues/42868)), although the -types that are constrained by early-bound parameters can be specified (as for -`bar_fn3`). +see [issue #42868](https://github.com/rust-lang/rust/issues/42868)), although +the types that are constrained by early-bound parameters can be specified (as +for `bar_fn3`). |
