Skip to content

Commit

Permalink
Fix package name to coincide with dir name
Browse files Browse the repository at this point in the history
  • Loading branch information
aarondl committed Nov 12, 2017
1 parent a280795 commit bc9a872
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion drivers/column.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bdb
package drivers

import (
"strings"
Expand Down
2 changes: 1 addition & 1 deletion drivers/column_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bdb
package drivers

import (
"strings"
Expand Down
4 changes: 2 additions & 2 deletions drivers/interface.go
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion drivers/interface_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bdb
package drivers

import (
"testing"
Expand Down
2 changes: 1 addition & 1 deletion drivers/keys.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bdb
package drivers

import "fmt"

Expand Down
2 changes: 1 addition & 1 deletion drivers/keys_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bdb
package drivers

import "testing"

Expand Down
2 changes: 1 addition & 1 deletion drivers/relationships.go
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion drivers/relationships_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bdb
package drivers

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion drivers/table.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bdb
package drivers

import "fmt"

Expand Down
2 changes: 1 addition & 1 deletion drivers/table_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bdb
package drivers

import "testing"

Expand Down

0 comments on commit bc9a872

Please sign in to comment.