From b209c2c34fe53e09e5e18b017f6f527b9183b910 Mon Sep 17 00:00:00 2001 From: Kai Date: Thu, 9 Oct 2025 08:21:49 +0200 Subject: [PATCH] className instead of classname I noticed that className is lowercase in the example, and that doesn't work. It took me a few minutes to find the error, hence the PR. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c4f6e63..c2940e0 100644 --- a/README.md +++ b/README.md @@ -351,7 +351,7 @@ If you need to use a class name other than `prose` for any reason, you can do so ```css @import 'tailwindcss'; @plugin "@tailwindcss/typography" { - classname: wysiwyg; + className: wysiwyg; } ```