Update src/librustc_error_codes/error_codes/E0634.md

Co-Authored-By: Dylan DPC <dylan.dpc@gmail.com>
This commit is contained in:
Ayush Mishra 2020-03-15 06:49:54 +05:30 committed by GitHub
parent 5760db14f9
commit 2974685f09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ struct Company(i32);
struct Company(i32);
```
You cannot use conflicting `packed` hint on a same type. If you want to pack a
You cannot use conflicting `packed` hints on a same type. If you want to pack a
type to a given size, you should provide a size to packed:
```