Use log instead of fmt for logging
Also fix up a few errors to lower case
This commit is contained in:
parent
1cafd4f2ce
commit
2f5863b17a
10 changed files with 49 additions and 47 deletions
|
@ -56,7 +56,7 @@ func FromString(s string) (Bearing, error) {
|
|||
return Bearing(i), nil
|
||||
}
|
||||
}
|
||||
return -1, fmt.Errorf("Unknown bearing: %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