docs: fix typo in error message
- Fix a typo in error message: "unspoorted" should be "unsupported" Signed-off-by: weeee9 <teletubby332@gmail.com>
This commit is contained in:
parent
70c6978fc4
commit
dadd69466e
|
@ -240,7 +240,7 @@ func (session *Session) getSlice(rows *core.Rows, types []*sql.ColumnType, field
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
default:
|
default:
|
||||||
return fmt.Errorf("unspoorted slice type: %t", t)
|
return fmt.Errorf("unsupported slice type: %t", t)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -269,7 +269,7 @@ func (session *Session) getMap(rows *core.Rows, types []*sql.ColumnType, fields
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
default:
|
default:
|
||||||
return fmt.Errorf("unspoorted map type: %t", t)
|
return fmt.Errorf("unsupported map type: %t", t)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue