diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2018-09-15 11:40:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-15 11:40:31 -0400 |
commit | a54a9dc796372478d26fa5b165c3b4d129cbcfce (patch) | |
tree | c1cd4755777de57dbad73d561df27d278d2f4a6f /src/codegen/mod.rs | |
parent | d00b54c5d6df35b5ed21f89c72a9dd1a1b90f7c8 (diff) | |
parent | 81af2b3455904fcdadae6ffd003adc1157c3e7ae (diff) |
Auto merge of #1387 - dholbert:patch-1, r=emilio
Fix typo: s/unkown/unknown/ (missing 'n')
Diffstat (limited to 'src/codegen/mod.rs')
-rw-r--r-- | src/codegen/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/mod.rs b/src/codegen/mod.rs index 5a4ccc72..8aa8d348 100644 --- a/src/codegen/mod.rs +++ b/src/codegen/mod.rs @@ -1786,7 +1786,7 @@ impl CodeGenerator for CompInfo { // all the tests to shit when parsing things like max_align_t. if self.found_unknown_attr() { warn!( - "Type {} has an unkown attribute that may affect layout", + "Type {} has an unknown attribute that may affect layout", canonical_ident.as_str() ); } |