Skip to content

Commit 18f6922

Browse files
committed
Address review comments
- Simplify boolean expression - Give an example of invalid syntax - Remove explanation of why code block is text
1 parent b885d81 commit 18f6922

File tree

3 files changed

+22
-15
lines changed

3 files changed

+22
-15
lines changed

compiler/rustc_mir/src/borrow_check/region_infer/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1241,7 +1241,7 @@ impl<'tcx> RegionInferenceContext<'tcx> {
12411241
/// it. However, it works pretty well in practice. In particular,
12421242
/// this is needed to deal with projection outlives bounds like
12431243
///
1244-
/// ```text (internal compiler representation so lifetime syntax is invalid)
1244+
/// ```text
12451245
/// <T as Foo<'0>>::Item: '1
12461246
/// ```
12471247
///

src/doc/rustdoc/src/lints.md

+20-13
Original file line numberDiff line numberDiff line change
@@ -305,30 +305,37 @@ examples that are invalid (e.g. empty, not parsable as Rust). For example:
305305
/// ```rust
306306
/// ```
307307
///
308-
/// Unclosed code blocks (with and without the `rust` marker):
308+
/// Invalid syntax in code blocks:
309309
///
310310
/// ```rust
311-
fn main() {}
311+
/// '<
312+
/// ```
313+
pub fn foo() {}
312314
```
313315

314316
Which will give:
315317

316318
```text
317319
warning: Rust code block is empty
318-
--> src/lib.rs:3:5
319-
|
320+
--> lint.rs:3:5
321+
|
320322
3 | /// ```rust
321-
| _____^
323+
| _____^
322324
4 | | /// ```
323-
| |_______^
324-
|
325-
= note: `#[warn(rustdoc::invalid_rust_codeblocks)]` on by default
325+
| |_______^
326+
|
327+
= note: `#[warn(rustdoc::invalid_rust_codeblocks)]` on by default
326328
327-
warning: Rust code block is empty
328-
--> src/lib.rs:8:5
329-
|
330-
8 | /// ```rust
331-
| ^^^^^^^
329+
warning: could not parse code block as Rust code
330+
--> lint.rs:8:5
331+
|
332+
8 | /// ```rust
333+
| _____^
334+
9 | | /// '<
335+
10 | | /// ```
336+
| |_______^
337+
|
338+
= note: error from rustc: unterminated character literal
332339
```
333340

334341
## bare_urls

src/librustdoc/passes/check_code_block_syntax.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ impl<'a, 'tcx> SyntaxChecker<'a, 'tcx> {
4848
.unwrap_or(false);
4949
let buffer = buffer.borrow();
5050

51-
if !(buffer.has_errors || is_empty) {
51+
if !buffer.has_errors && !is_empty {
5252
// No errors in a non-empty program.
5353
return;
5454
}

0 commit comments

Comments
 (0)