diff --git a/test_suite/tests/ui/default-attribute/tuple_struct.rs b/test_suite/tests/ui/default-attribute/tuple_struct.rs index 486abba77..de08a34a5 100644 --- a/test_suite/tests/ui/default-attribute/tuple_struct.rs +++ b/test_suite/tests/ui/default-attribute/tuple_struct.rs @@ -11,7 +11,7 @@ struct T0(u8, u8); struct T1(u8, #[serde(default)] u8); // ERROR: The first field can get default value only if sequence is empty, but -// that mean that all other fields cannot be deserialized without errors. +// that means that all other fields cannot be deserialized without errors. #[derive(Deserialize)] struct T2(#[serde(default)] u8, u8, u8); diff --git a/test_suite/tests/ui/default-attribute/tuple_struct_path.rs b/test_suite/tests/ui/default-attribute/tuple_struct_path.rs index 48b07cbd0..7629970cd 100644 --- a/test_suite/tests/ui/default-attribute/tuple_struct_path.rs +++ b/test_suite/tests/ui/default-attribute/tuple_struct_path.rs @@ -11,7 +11,7 @@ fn d() -> T { struct T1(u8, #[serde(default = "d")] u8); // ERROR: The first field can get default value only if sequence is empty, but -// that mean that all other fields cannot be deserialized without errors. +// that means that all other fields cannot be deserialized without errors. #[derive(Deserialize)] struct T2(#[serde(default = "d")] u8, u8, u8);