Skip to content

Commit a1973af

Browse files
committed
Fix typo in unsupported type check
1 parent a260c20 commit a1973af

File tree

1 file changed

+1
-1
lines changed
  • crates/stdarch-verify/src

1 file changed

+1
-1
lines changed

crates/stdarch-verify/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ fn to_type(t: &syn::Type) -> proc_macro2::TokenStream {
194194
"v4f32" => quote! { &v4f32 },
195195
"v2f64" => quote! { &v2f64 },
196196

197-
s => panic!("unspported type: \"{}\"", s),
197+
s => panic!("unsupported type: \"{}\"", s),
198198
},
199199
syn::Type::Ptr(syn::TypePtr {
200200
ref elem,

0 commit comments

Comments
 (0)