Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
biotinker committed Nov 23, 2022
1 parent 2b6edb7 commit 9a58069
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion motionplan/plannerOptions.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const (
defaultEpsilon = 0.001

// default number of seconds to try to solve in total before returning.
defaultTimeout = 45.
defaultTimeout = 300.

// names of constraints.
defaultLinearConstraintName = "defaultLinearConstraint"
Expand Down
2 changes: 1 addition & 1 deletion spatialmath/quaternion.go
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ func slerp(qN1, qN2 quat.Number, by float64) quat.Number {
return quat.Number{q.W, q.X(), q.Y(), q.Z()}
}

// oppositeHemisphere returns true if all sings are opposite between two quats
// oppositeHemisphere returns true if all sings are opposite between two quats.
func oppositeHemisphere(q1, q2 quat.Number) bool {
if math.Signbit(q1.Real) == math.Signbit(q2.Real) {
return false
Expand Down

0 comments on commit 9a58069

Please sign in to comment.