From bc9a87205b4b6388f0f71d43f85d4ab951efce82 Mon Sep 17 00:00:00 2001 From: Aaron L Date: Sat, 17 Jun 2017 23:22:54 -0700 Subject: [PATCH] Fix package name to coincide with dir name --- drivers/column.go | 2 +- drivers/column_test.go | 2 +- drivers/interface.go | 4 ++-- drivers/interface_test.go | 2 +- drivers/keys.go | 2 +- drivers/keys_test.go | 2 +- drivers/relationships.go | 2 +- drivers/relationships_test.go | 2 +- drivers/table.go | 2 +- drivers/table_test.go | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/drivers/column.go b/drivers/column.go index 1990e7d77..4fe454dc4 100644 --- a/drivers/column.go +++ b/drivers/column.go @@ -1,4 +1,4 @@ -package bdb +package drivers import ( "strings" diff --git a/drivers/column_test.go b/drivers/column_test.go index 0b3bb3ba0..051af3496 100644 --- a/drivers/column_test.go +++ b/drivers/column_test.go @@ -1,4 +1,4 @@ -package bdb +package drivers import ( "strings" diff --git a/drivers/interface.go b/drivers/interface.go index d07fc8f85..c578814fc 100644 --- a/drivers/interface.go +++ b/drivers/interface.go @@ -1,5 +1,5 @@ -// Package bdb supplies the sql(b)oiler (d)ata(b)ase abstractions. -package bdb +// Package drivers supplies the sql(b)oiler (d)ata(b)ase abstractions. +package drivers import ( "sort" diff --git a/drivers/interface_test.go b/drivers/interface_test.go index a922fa067..2ca941a1e 100644 --- a/drivers/interface_test.go +++ b/drivers/interface_test.go @@ -1,4 +1,4 @@ -package bdb +package drivers import ( "testing" diff --git a/drivers/keys.go b/drivers/keys.go index 909ada25e..0286ed442 100644 --- a/drivers/keys.go +++ b/drivers/keys.go @@ -1,4 +1,4 @@ -package bdb +package drivers import "fmt" diff --git a/drivers/keys_test.go b/drivers/keys_test.go index b410073a9..50fe0ba21 100644 --- a/drivers/keys_test.go +++ b/drivers/keys_test.go @@ -1,4 +1,4 @@ -package bdb +package drivers import "testing" diff --git a/drivers/relationships.go b/drivers/relationships.go index 974f85c7e..4c2884d34 100644 --- a/drivers/relationships.go +++ b/drivers/relationships.go @@ -1,4 +1,4 @@ -package bdb +package drivers // ToOneRelationship describes a relationship between two tables where the local // table has no id, and the foregin table has an id that matches a column in the diff --git a/drivers/relationships_test.go b/drivers/relationships_test.go index 78d467f49..59543d982 100644 --- a/drivers/relationships_test.go +++ b/drivers/relationships_test.go @@ -1,4 +1,4 @@ -package bdb +package drivers import ( "reflect" diff --git a/drivers/table.go b/drivers/table.go index 62dcd3264..5d35a6511 100644 --- a/drivers/table.go +++ b/drivers/table.go @@ -1,4 +1,4 @@ -package bdb +package drivers import "fmt" diff --git a/drivers/table_test.go b/drivers/table_test.go index 346226388..2d3096f9e 100644 --- a/drivers/table_test.go +++ b/drivers/table_test.go @@ -1,4 +1,4 @@ -package bdb +package drivers import "testing"