brittany icon indicating copy to clipboard operation
brittany copied to clipboard

Comment walks to the right each time formatted

Open pbrisbin opened this issue 5 years ago • 0 comments

Paste this example into https://hexagoxel.de/brittany/

module WalkingComment where

fetchAssessmentAnswersForSchool
  :: MonadIO m
  => SchoolId
  -> SqlPersistT
       m
       [ -- Keep clicking format and watch this comment walk to the right...
         ( Value MathAssessmentAssignmentSessionId
         , Value UTCTime -- Created at
         , Value FQId
         , Value NameComponent -- Student first name
         , Value NameComponent -- Student last name
         , Value Text -- Teacher full name
         , Value UTCTime -- Updated at
         , Entity AssessmentAnswer
         )
       ]
fetchAssessmentAnswersForSchool = undefined

Every time you click format, the "Keep clicking" comment walks one column to the right.

Kind of funny to watch :joy:

pbrisbin avatar Aug 22 '18 11:08 pbrisbin