haskell / haddock

Haskell Documentation Tool
www.haskell.org/haddock/
BSD 2-Clause "Simplified" License
361 stars 241 forks source link

fix parsing trailing quotes in backticked identifiers (#1408) #1483

Closed ulysses4ever closed 2 years ago

ulysses4ever commented 2 years ago

I assume this needs a test… It works on the example in #1408 provided by @Kleidukos

module Module where

-- | This is the `foo'` function.
foo' :: ()
foo' = ()
Kleidukos commented 2 years ago

@ulysses4ever This is wonderful! :) Yes a test would be most welcome.

ulysses4ever commented 2 years ago

@Kleidukos done. Tests pass on my end.