1
0
Fork 0
mirror of https://github.com/archtechx/enums.git synced 2025-12-12 12:14:03 +00:00

Correct typo/error in README.md

This commit is contained in:
colinmackinlay 2022-11-07 23:44:05 +00:00 committed by GitHub
parent 373a86a16e
commit fd9d73e404
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -317,7 +317,7 @@ class Color extends MetaProperty
{
protected function transform(mixed $value): mixed
{
return "text-{$color}-500";
return "text-{$value}-500";
}
}
```