Skip to content

Commit 801efb3

Browse files
Fix casing of richTextEditor variable in examples
Updated the variable casing
1 parent 02928a8 commit 801efb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MAUI/Rich-Text-Editor/Advanced-Features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The Rich Text Editor control displays the plain text that can be set using the [
2626
{% highlight C# %}
2727

2828
SfRichTextEditor richTextEditor = new SfRichTextEditor();
29-
richtexteditor.Text = "The rich text editor component is WYSIWYG editor that provides the best user experience to create and update the content";
29+
richTextEditor.Text = "The rich text editor component is WYSIWYG editor that provides the best user experience to create and update the content";
3030

3131
{% endhighlight %}
3232

@@ -49,7 +49,7 @@ The [HtmlText](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.RichTextEdito
4949
{% highlight C# %}
5050

5151
SfRichTextEditor richTextEditor = new SfRichTextEditor();
52-
richtexteditor.HtmlText = "The <b>rich text editor</b> component is WYSIWYG editor that provides the best user experience to create and update the content";
52+
richTextEditor.HtmlText = "The <b>rich text editor</b> component is WYSIWYG editor that provides the best user experience to create and update the content";
5353

5454
{% endhighlight %}
5555

0 commit comments

Comments
 (0)