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:
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
Block a user