1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

asm.v: fix a small typo

This commit is contained in:
PoLLeN 2019-11-19 11:13:02 +04:30 committed by Alexander Medvednikov
parent 94b36250a1
commit fe81ccab20

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)