asm.v: fix a small typo
parent
94b36250a1
commit
fe81ccab20
|
@ -6,7 +6,7 @@ module compiler
|
||||||
|
|
||||||
fn (p mut Parser) inline_asm() {
|
fn (p mut Parser) inline_asm() {
|
||||||
if !p.inside_unsafe {
|
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.next()
|
||||||
p.check(.lcbr)
|
p.check(.lcbr)
|
||||||
|
|
Loading…
Reference in New Issue