Skip to content

Commit 293fa8f

Browse files
committed
Fix typo: satic -> static
1 parent a84d1b2 commit 293fa8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_mir/src/transform/inline.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ impl Inliner<'tcx> {
284284
&self,
285285
callsite: &CallSite<'tcx>,
286286
callee_attrs: &CodegenFnAttrs,
287-
) -> Result<(), &'satic str> {
287+
) -> Result<(), &'static str> {
288288
if let InlineAttr::Never = callee_attrs.inline {
289289
return Err("never inline hint");
290290
}

0 commit comments

Comments
 (0)