From 2b7545ce111213ba263b92244bd01874e62a092d Mon Sep 17 00:00:00 2001 From: Keson Date: Mon, 26 Oct 2020 16:33:02 +0800 Subject: [PATCH] spell fix (#167) --- tools/goctl/model/sql/parser/error.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/goctl/model/sql/parser/error.go b/tools/goctl/model/sql/parser/error.go index 57f56a0c..8d34dce7 100644 --- a/tools/goctl/model/sql/parser/error.go +++ b/tools/goctl/model/sql/parser/error.go @@ -7,5 +7,5 @@ import ( var ( unSupportDDL = errors.New("unexpected type") tableBodyIsNotFound = errors.New("create table spec not found") - errPrimaryKey = errors.New("unexpected joint primary key") + errPrimaryKey = errors.New("unexpected join primary key") )