parser: fix indentation to tabs (#6548)

pull/6546/head
Henrixounez 2020-10-03 14:20:41 +02:00 committed by GitHub
parent 5aea0d024f
commit a9da4dd437
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 19 deletions

View File

@ -73,7 +73,7 @@ fn (p []Param) equals(o []Param) bool {
if p.len != o.len {
return false
}
for i in 0..p.len {
for i in 0 .. p.len {
if !p[i].equals(o[i]) {
return false
}