From 86436f99ccfeda7b9c98c9c8efaa9037ed367847 Mon Sep 17 00:00:00 2001 From: rbasso Date: Tue, 27 Sep 2016 16:43:12 +0900 Subject: [PATCH] rna-transcription: Remove unneeded stub comments. In exercism/xhaskell#302, we are moving all the hints in the test suites and stub solutions to `HINTS.md` files. But the comments in `src/DNA.hs` are too obvious and may take all the fun of solving the exercise, so we are just removing them. --- exercises/rna-transcription/src/DNA.hs | 2 -- 1 file changed, 2 deletions(-) diff --git a/exercises/rna-transcription/src/DNA.hs b/exercises/rna-transcription/src/DNA.hs index c50d40d5a..3f00ad67b 100644 --- a/exercises/rna-transcription/src/DNA.hs +++ b/exercises/rna-transcription/src/DNA.hs @@ -1,6 +1,4 @@ module DNA (toRNA) where --- | if string contains invalid character, return Nothing --- | if string contains only valid nucleotides, return Just transcription toRNA :: String -> Maybe String toRNA = undefined