Skip to content

Commit 980a5b0

Browse files
committed
indentation fixes
1 parent bc7eb3b commit 980a5b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc_mir/diagnostics.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ use std::sync::atomic::{AtomicUsize, ATOMIC_USIZE_INIT};
309309
310310
const A: AtomicUsize = ATOMIC_USIZE_INIT;
311311
static B: &'static AtomicUsize = &A;
312-
// error: cannot borrow a constant which may contain interior mutability,
312+
// error: cannot borrow a constant which may contain interior mutability,
313313
// create a static instead
314314
```
315315
@@ -338,7 +338,7 @@ use std::cell::Cell;
338338
339339
const A: Cell<usize> = Cell::new(1);
340340
const B: &'static Cell<usize> = &A;
341-
// error: cannot borrow a constant which may contain interior mutability,
341+
// error: cannot borrow a constant which may contain interior mutability,
342342
// create a static instead
343343
344344
// or:

0 commit comments

Comments
 (0)