Browse Source

Rename MysqlWarning to MySQLWarning for consistency

Julien Schmidt 11 years ago
parent
commit
6b302cc76e
1 changed files with 4 additions and 4 deletions
  1. 4 4
      errors.go

+ 4 - 4
errors.go

@@ -59,7 +59,7 @@ func (me *MySQLError) Error() string {
 
 // MySQLWarnings is an error type which represents a group of one or more MySQL
 // warnings
-type MySQLWarnings []MysqlWarning
+type MySQLWarnings []MySQLWarning
 
 func (mws MySQLWarnings) Error() string {
 	var msg string
@@ -77,9 +77,9 @@ func (mws MySQLWarnings) Error() string {
 	return msg
 }
 
-// MysqlWarning is an error type which represents a single MySQL warning.
+// MySQLWarning is an error type which represents a single MySQL warning.
 // Warnings are returned in groups only. See MySQLWarnings
-type MysqlWarning struct {
+type MySQLWarning struct {
 	Level   string
 	Code    string
 	Message string
@@ -98,7 +98,7 @@ func (mc *mysqlConn) getWarnings() (err error) {
 		err = rows.Next(values)
 		switch err {
 		case nil:
-			warning := MysqlWarning{}
+			warning := MySQLWarning{}
 
 			if raw, ok := values[0].([]byte); ok {
 				warning.Level = string(raw)