File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
compiler/rustc_next_trait_solver/src
library/compiler-builtins Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1778,7 +1778,7 @@ Language
1778
1778
- [Undeprecate lint `unstable_features` and make use of it in the compiler.](https://github.com/rust-lang/rust/pull/118639/)
1779
1779
- [Make inductive cycles in coherence ambiguous always.](https://github.com/rust-lang/rust/pull/118649/)
1780
1780
- [Get rid of type-driven traversal in const-eval interning](https://github.com/rust-lang/rust/pull/119044/),
1781
- only as a [future compatiblity lint](https://github.com/rust-lang/rust/pull/122204) for now.
1781
+ only as a [future compatibility lint](https://github.com/rust-lang/rust/pull/122204) for now.
1782
1782
- [Deny braced macro invocations in let-else.](https://github.com/rust-lang/rust/pull/119062/)
1783
1783
1784
1784
<a id="1.77.0-Compiler"></a>
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ enum CanonicalizeInputKind {
27
27
ParamEnv ,
28
28
/// When canonicalizing predicates, we don't keep `'static`. If we're
29
29
/// currently outside of the trait solver and canonicalize the root goal
30
- /// during HIR typeck, we replace each occurance of a region with a
30
+ /// during HIR typeck, we replace each occurrence of a region with a
31
31
/// unique region variable. See the comment on `InferCtxt::in_hir_typeck`
32
32
/// for more details.
33
33
Predicate { is_hir_typeck_root_goal : bool } ,
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ where
130
130
return F :: from_bits ( MinInt :: ZERO ) ;
131
131
}
132
132
133
- // If partial cancellation occured , we need to left-shift the result
133
+ // If partial cancellation occurred , we need to left-shift the result
134
134
// and adjust the exponent:
135
135
if a_significand < implicit_bit << 3 {
136
136
let shift = a_significand. leading_zeros ( ) as i32
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ pub unsafe extern "custom" fn __rust_probestack() {
73
73
// page needed.
74
74
//
75
75
// Note that we're also testing against `8(%rsp)` to account for the 8
76
- // bytes pushed on the stack orginally with our return address. Using
76
+ // bytes pushed on the stack originally with our return address. Using
77
77
// `8(%rsp)` simulates us testing the stack pointer in the caller's
78
78
// context.
79
79
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def eprint(*args, **kwargs):
34
34
35
35
@dataclass
36
36
class Crate :
37
- """Representation of public interfaces and function defintion locations in
37
+ """Representation of public interfaces and function definition locations in
38
38
`libm`.
39
39
"""
40
40
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ const PIO2: [f64; 8] = [
146
146
// x[i] = floor(z)
147
147
// z = (z-x[i])*2**24
148
148
//
149
- // y[] ouput result in an array of double precision numbers.
149
+ // y[] output result in an array of double precision numbers.
150
150
// The dimension of y[] is:
151
151
// 24-bit precision 1
152
152
// 53-bit precision 2
You can’t perform that action at this time.
0 commit comments