From 8f3110f15af969ae56b7863aace7b3d0942f3930 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 1 May 2019 19:36:15 +0100 Subject: [PATCH] Inline code example --- .../2019-04-29-testing-tailwindcss-plugins-with-jest.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/_posts/2019-04-29-testing-tailwindcss-plugins-with-jest.md b/source/_posts/2019-04-29-testing-tailwindcss-plugins-with-jest.md index 2a2369e8..0f451987 100644 --- a/source/_posts/2019-04-29-testing-tailwindcss-plugins-with-jest.md +++ b/source/_posts/2019-04-29-testing-tailwindcss-plugins-with-jest.md @@ -89,9 +89,7 @@ const generatePluginCss = (options = {}) => { .process('@tailwind utilities;', { from: undefined }) - .then(result => { - return result.css - }) + .then(result => result.css) } ```