Skip to content

Commit ef4320b

Browse files
authored
Fixed a typo. (#265)
1 parent a9b54d8 commit ef4320b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

text/chapter4.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fact n = n * fact (n - 1)
3838

3939
Here, we can see how the factorial function is computed by reducing the problem to a subproblem - that of computing the factorial of a smaller integer. When we reach zero, the answer is immediate.
4040

41-
Here is another common example, which computes the _Fibonnacci function_:
41+
Here is another common example, which computes the _Fibonacci function_:
4242

4343
```haskell
4444
fib :: Int -> Int

0 commit comments

Comments
 (0)