From 6f00ac27e05abf224641cca9afd2963e9c4ebe9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Za=C5=82=C4=99cki?= Date: Sun, 12 Feb 2017 17:10:23 +0100 Subject: [PATCH] Correct comonad value variable name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c4c74a2..86a5dbb 100644 --- a/README.md +++ b/README.md @@ -528,7 +528,7 @@ extract :: Comonad w => w a ~> () -> a A value which has a Comonad must provide an `extract` method on itself. The `extract` method takes no arguments: - c.extract() + w.extract() 1. `extract` must return a value of type `v`, for some variable `v` contained in `w`. 1. `v` must have the same type that `f` returns in `extend`.