Verites/verigraph

View on GitHub
src/library/Analysis/Processes.hs

Summary

Maintainability
Test Coverage

Use tuple-section
Open

expandeProductions (a,b) = map (\x -> (a,x)) (expandNACs b)
Severity: Minor
Found in src/library/Analysis/Processes.hs by hlint

Found

\ x -> (a, x)

Perhaps

(a,)

Applying this change:

  • may require {-# LANGUAGE TupleSections #-} adding to the top of the file

Use tuple-section
Open

expandeProductions (a,b) = map (\x -> (a,x)) (expandNACs b)
Severity: Minor
Found in src/library/Analysis/Processes.hs by hlint

Found

\ x -> (a, x)

Perhaps

(a,)

Applying this change:

  • may require {-# LANGUAGE TupleSections #-} adding to the top of the file

There are no issues that match your filters.

Category
Status