timjb/diagrams-rubiks-cube

View on GitHub
examples/OrbitLength.hs

Summary

Maintainability
Test Coverage

Redundant guard
Open

    go !i c | otherwise = go (i+1) (step c)
Severity: Minor
Found in examples/OrbitLength.hs by hlint

Found

go !i c | otherwise = go (i + 1) (step c)

Perhaps

go !i c = go (i + 1) (step c)

There are no issues that match your filters.

Category
Status