From fd9d73e40436c641d7a888fd0ad2840d81b8f59c Mon Sep 17 00:00:00 2001 From: colinmackinlay Date: Mon, 7 Nov 2022 23:44:05 +0000 Subject: [PATCH] Correct typo/error in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fb96e30..8350831 100644 --- a/README.md +++ b/README.md @@ -317,7 +317,7 @@ class Color extends MetaProperty { protected function transform(mixed $value): mixed { - return "text-{$color}-500"; + return "text-{$value}-500"; } } ```