Removing backticks

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

View File

@ -181,7 +181,7 @@ func Lerp(a, b Vec, t float64) Vec {
return a.Scaled(1 - t).Add(b.Scaled(t))
}
// Line is a 2D line segment, between points `A` and `B`.
// Line is a 2D line segment, between points A and B.
type Line struct {
A, B Vec
}