Adding fullstop at end of func comment

This commit is contained in:
Ben Cragg 2019-04-04 15:13:47 +01:00
parent 966150a856
commit bcda85acd2
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ func (l Line) Closest(v Vec) Vec {
return V(x, y)
}
// Contains returns whether the provided Vec lies on the line
// Contains returns whether the provided Vec lies on the line.
func (l Line) Contains(v Vec) bool {
return l.Closest(v) == v
}