Fix mistakes in blog posts

This commit is contained in:
2019-11-13 13:49:47 -08:00
parent db16dbda18
commit dc9a68ad10
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ defn snd p = {
P x y -> { y }
}
}
defn slow x = { returns x after waiting for 4 seconds }
defn slow x = { returns x after waiting for 1 second }
defn main = { fst (P (slow 320) (slow 6)) }
```