From c43d4121f42cd17ef5127e0fa5d2464ae85ad133 Mon Sep 17 00:00:00 2001 From: Ryan Mayberry Date: Sun, 23 Apr 2023 07:02:19 -0500 Subject: [PATCH] closing bracket missing The closing bracket on the toolbarOptions for the directive example is missing. --- docs/content/1_docs/4_form-fields/02_wysiwyg.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/1_docs/4_form-fields/02_wysiwyg.md b/docs/content/1_docs/4_form-fields/02_wysiwyg.md index bc8295456..e95d733b2 100644 --- a/docs/content/1_docs/4_form-fields/02_wysiwyg.md +++ b/docs/content/1_docs/4_form-fields/02_wysiwyg.md @@ -52,7 +52,7 @@ Wysiwyg::make() @formField('wysiwyg', [ 'name' => 'case_study', 'label' => 'Case study text', - 'toolbarOptions' => [ [ 'header' => [1, 2, false] ], + 'toolbarOptions' => [ [ 'header' => [1, 2, false] ] ], 'placeholder' => 'Case study text', 'maxlength' => 200, 'editSource' => true,