summaryrefslogtreecommitdiff
path: root/lec06
diff options
context:
space:
mode:
authorEdoardo La Greca2025-08-26 16:45:51 +0200
committerEdoardo La Greca2025-08-26 16:45:51 +0200
commit523c7a99f8644a9d6cb39759ecc74b18b0385c2a (patch)
tree5b74e89a44fc57c2ba8377cc11f2147d7da07952 /lec06
parent8076d92345884143ce50a942c301255e954c34c4 (diff)
change indentation in exercise 3
Diffstat (limited to 'lec06')
-rw-r--r--lec06/Fibonacci.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lec06/Fibonacci.hs b/lec06/Fibonacci.hs
index 2b6e343..9993169 100644
--- a/lec06/Fibonacci.hs
+++ b/lec06/Fibonacci.hs
@@ -21,7 +21,7 @@ streamToList :: Stream a -> [a]
streamToList (Cons a s) = a : streamToList s
instance Show a => Show (Stream a) where
- show s = show $ take 20 $ streamToList s
+ show s = show $ take 20 $ streamToList s
-- Exercise 4