summaryrefslogtreecommitdiff
path: root/haskell/composition.html
diff options
context:
space:
mode:
Diffstat (limited to 'haskell/composition.html')
-rw-r--r--haskell/composition.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell/composition.html b/haskell/composition.html
index 1d3d013..3772492 100644
--- a/haskell/composition.html
+++ b/haskell/composition.html
@@ -1,5 +1,5 @@
<h2>Function composition in Haskell</h2>
-<p>(This post is intended for for Haskell beginners.)</p>
+<p>(This post is intended for Haskell beginners.)</p>
<p>In Haskell, the dot operator <code>(.)</code>, written infix like <code>f . g</code>, is <em>function composition</em>.
For example, suppose you have two functions:</p>
<pre><code class="language-haskell">addone :: Int -&gt; Int