Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielGavin committed Nov 4, 2023
1 parent 3294b99 commit b19c24e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/odin/format/format.odin
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package odin_format

import "shared:odin/printer"
import "core:odin/parser"
import "core:odin/ast"
import "core:encoding/json"
import "core:fmt"
import "core:odin/ast"
import "core:odin/parser"
import "core:os"
import "core:path/filepath"
import "core:fmt"
import "shared:odin/printer"

default_style := printer.default_style

Expand Down Expand Up @@ -81,8 +81,6 @@ format :: proc(

ok := parser.parse_file(&p, &file)

fmt.println(file.syntax_error_count)

if !ok || file.syntax_error_count > 0 {
return {}, false
}
Expand Down

0 comments on commit b19c24e

Please sign in to comment.