diff --git a/go/libraries/doltcore/doltdb/system_table.go b/go/libraries/doltcore/doltdb/system_table.go index abc4a42aa3..9ef6b10f33 100644 --- a/go/libraries/doltcore/doltdb/system_table.go +++ b/go/libraries/doltcore/doltdb/system_table.go @@ -66,7 +66,7 @@ func IsReadOnlySystemTable(name string) bool { return HasDoltPrefix(name) && !set.NewStrSet(writeableSystemTables).Contains(name) } -// IsNonAlterableSystemTable returns whether the table name given is a system table that cannot be dropped or altered +// IsNonAlterableSystemTable returns whether the table name given is a system table that cannot be dropped or altered // by the user. func IsNonAlterableSystemTable(name string) bool { return IsReadOnlySystemTable(name) || strings.ToLower(name) == SchemasTableName