From 3e073a80f8873a3ea755bf32e629d82e5d26021f Mon Sep 17 00:00:00 2001 From: Tobias Hort-Giess Date: Sun, 21 Apr 2024 21:57:50 +0200 Subject: [PATCH] Fix typo Opertator -> Operator --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6494a7c..d05d55a 100644 --- a/README.md +++ b/README.md @@ -199,9 +199,9 @@ For that reason these implementations are kept in the `internal` package. These The following table lists the relationship between some selected operators -| Opertator | Parameter | Monad | Result | -| -------- | ---------------- | --------------- | -------- | -| Map | `func(A) B` | `HKT[A]` | `HKT[B]` | -| Chain | `func(A) HKT[B]` | `HKT[A]` | `HKT[B]` | -| Ap | `HKT[A]` | `HKT[func(A)B]` | `HKT[B]` | -| Flap | `A` | `HKT[func(A)B]` | `HKT[B]` | +| Operator | Parameter | Monad | Result | +| -------- | ---------------- | --------------- | -------- | +| Map | `func(A) B` | `HKT[A]` | `HKT[B]` | +| Chain | `func(A) HKT[B]` | `HKT[A]` | `HKT[B]` | +| Ap | `HKT[A]` | `HKT[func(A)B]` | `HKT[B]` | +| Flap | `A` | `HKT[func(A)B]` | `HKT[B]` |