evilsoft / crocks

A collection of well known Algebraic Data Types for your utter enjoyment.
https://crocks.dev
ISC License
1.59k stars 102 forks source link

Convert inline comments to block #447

Closed bennypowers closed 4 years ago

bennypowers commented 4 years ago

This PR is the first step in #446

It converts all currently present inline type signature comments to block format

This is an entirely mechanical transformation, using two regexps:

s/\/\/ ([^\s]+) : (.*)/\/** $1 :: $2 *\//g
s/\/\/ ([^\s]+) :: (.*)/\/** $1 :: $2 *\//g
coveralls commented 4 years ago

Coverage Status

Coverage remained the same at 100.0% when pulling 6e10be8cba584a2ff47c35165767ea67b3024a16 on block-comments into 2bab3222ecb6fb95bc1094204277f5a8f9785d3d on master.

bennypowers commented 4 years ago

np. commit updated.