typo fixed

This commit is contained in:
meehow 2016-05-15 08:12:06 +02:00
parent ce1b59bb81
commit f230ced201
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ var driversMu sync.Mutex
var drivers = make(map[string]Driver)
// Registers a driver so it can be created from its name. Drivers should
// call this from an init() function so that they registers themselvse on
// call this from an init() function so that they registers themselves on
// import
func RegisterDriver(name string, driver Driver) {
driversMu.Lock()