asm.v: fix a small typo

pull/2808/head
PoLLeN 2019-11-19 11:13:02 +04:30 committed by Alexander Medvednikov
parent 94b36250a1
commit fe81ccab20
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ module compiler
fn (p mut Parser) inline_asm() {
if !p.inside_unsafe {
p.error('asm() needs to be run unside `unsafe {}`')
p.error('asm() needs to be run inside `unsafe {}`')
}
p.next()
p.check(.lcbr)