Skip to content

Commit 4aff84f

Browse files
CentrilRobin Kruppe
and
Robin Kruppe
authored
Fix typo (unqique -> unique)
Co-Authored-By: Robin Kruppe <[email protected]>
1 parent cd2e7fc commit 4aff84f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/ui/lint/lint-ctypes-enum.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ extern {
4545
fn option_ref(x: Option<&'static u8>);
4646
fn option_fn(x: Option<extern "C" fn()>);
4747
fn nonnull(x: Option<std::ptr::NonNull<u8>>);
48-
fn unqique(x: Option<std::ptr::Unique<u8>>); //~ ERROR enum has no representation hint
48+
fn unique(x: Option<std::ptr::Unique<u8>>); //~ ERROR enum has no representation hint
4949
fn nonzero_u8(x: Option<num::NonZeroU8>);
5050
fn nonzero_u16(x: Option<num::NonZeroU16>);
5151
fn nonzero_u32(x: Option<num::NonZeroU32>);

0 commit comments

Comments
 (0)