Fix error messages that still talk about direction
This commit is contained in:
parent
339163e06d
commit
a784b06c2a
2 changed files with 3 additions and 3 deletions
|
@ -56,7 +56,7 @@ func FromString(s string) (Bearing, error) {
|
|||
return Bearing(i), nil
|
||||
}
|
||||
}
|
||||
return -1, fmt.Errorf("Unknown direction: %s", s)
|
||||
return -1, fmt.Errorf("Unknown bearing: %s", s)
|
||||
}
|
||||
|
||||
var bearingVectors = []vector.Vector{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue