You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rollup merge of rust-lang#133689 - HomelikeBrick42:master, r=jieyouxu
Fixed typos by changing `happend` to `happened`
I just noticed this typo before and decided to fix it :3
Copy file name to clipboardexpand all lines: compiler/rustc_lint/messages.ftl
+3-3
Original file line number
Diff line number
Diff line change
@@ -450,15 +450,15 @@ lint_invalid_nan_comparisons_eq_ne = incorrect NaN comparison, NaN cannot be dir
450
450
lint_invalid_nan_comparisons_lt_le_gt_ge = incorrect NaN comparison, NaN is not orderable
451
451
452
452
lint_invalid_reference_casting_assign_to_ref = assigning to `&T` is undefined behavior, consider using an `UnsafeCell`
453
-
.label = casting happend here
453
+
.label = casting happened here
454
454
455
455
lint_invalid_reference_casting_bigger_layout = casting references to a bigger memory layout than the backing allocation is undefined behavior, even if the reference is unused
456
-
.label = casting happend here
456
+
.label = casting happened here
457
457
.alloc = backing allocation comes from here
458
458
.layout = casting from `{$from_ty}` ({$from_size} bytes) to `{$to_ty}` ({$to_size} bytes)
459
459
460
460
lint_invalid_reference_casting_borrow_as_mut = casting `&T` to `&mut T` is undefined behavior, even if the reference is unused, consider instead using an `UnsafeCell`
461
-
.label = casting happend here
461
+
.label = casting happened here
462
462
463
463
lint_invalid_reference_casting_note_book = for more information, visit <https://doc.rust-lang.org/book/ch15-05-interior-mutability.html>
0 commit comments