diff options
author | Ryo Nihei <nihei.dev@gmail.com> | 2022-05-27 02:11:39 +0900 |
---|---|---|
committer | Ryo Nihei <nihei.dev@gmail.com> | 2022-05-27 02:25:50 +0900 |
commit | 4c0f7eb15db566a19eb753e6ffc3a2354078f5fc (patch) | |
tree | f3956aa60561ede7d6ccfb288eabfd47de60ffe4 /cmd/vartan/compile.go | |
parent | Allows a directory to be specified as the --output option for the vartan-comp... (diff) | |
download | urubu-4c0f7eb15db566a19eb753e6ffc3a2354078f5fc.tar.gz urubu-4c0f7eb15db566a19eb753e6ffc3a2354078f5fc.tar.xz |
Rename spec package to spec/grammar package
Diffstat (limited to 'cmd/vartan/compile.go')
-rw-r--r-- | cmd/vartan/compile.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/vartan/compile.go b/cmd/vartan/compile.go index b8b97b1..eb25374 100644 --- a/cmd/vartan/compile.go +++ b/cmd/vartan/compile.go @@ -10,7 +10,7 @@ import ( verr "github.com/nihei9/vartan/error" "github.com/nihei9/vartan/grammar" - "github.com/nihei9/vartan/spec" + spec "github.com/nihei9/vartan/spec/grammar" "github.com/spf13/cobra" ) |