Trimming (computer programming): Difference between revisions

Content deleted Content added
m Usage: Typo fixing and checking, typos fixed: , → , (2) using AWB (8097)
Haskell: Typo fixing and checking using AWB
Line 196:
 
<source lang="haskell">
import Data{{Not a typo|.}}Char (isSpace)
trim :: String -> String
trim = f {{Not a typo|.}} f
where f = reverse {{Not a typo|.}} dropWhile isSpace
</source>