From daf68461fac89e6c9054cdcc6b4c718946977ea7 Mon Sep 17 00:00:00 2001 From: Chris Brown Date: Tue, 26 Jan 2021 10:32:14 -0800 Subject: [PATCH] Update README.md Corrected README doc "Kitchen sink example, with chaining" section to `use` correct path and class name. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c19e1bf..dac7778 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ $shipping->displayIf("ProductType")->isEqualTo("furniture") ```php displayIf("Vendors")->hasCheckedAtLeast(3)->end(), CheckboxField::create('HasUpload', 'Has an upload'), - DisplayLogicWrapper::create( + Wrapper::create( UploadField::create('FileUpload', 'Upload a file'), LiteralField::create('test', 'Keep the file small!') )->displayIf('HasUpload')->isChecked()->end(),