From 0f6b1ac1b42cae0e836c9289a0c91da933c0d0c6 Mon Sep 17 00:00:00 2001 From: Jonas <63404212+jay-k98@users.noreply.github.com> Date: Sat, 11 May 2024 00:51:58 +0200 Subject: [PATCH] Fix typo in QuillHtmlConverter (#1855) Co-authored-by: Jonas Klock --- quill_html_converter/lib/quill_html_converter.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quill_html_converter/lib/quill_html_converter.dart b/quill_html_converter/lib/quill_html_converter.dart index 7ed4fe0b..460b74dc 100644 --- a/quill_html_converter/lib/quill_html_converter.dart +++ b/quill_html_converter/lib/quill_html_converter.dart @@ -2,9 +2,9 @@ library quill_html_converter; import 'package:dart_quill_delta/dart_quill_delta.dart'; import 'package:vsc_quill_delta_to_html/vsc_quill_delta_to_html.dart' - as conventer show ConverterOptions, QuillDeltaToHtmlConverter; + as converter show ConverterOptions, QuillDeltaToHtmlConverter; -typedef ConverterOptions = conventer.ConverterOptions; +typedef ConverterOptions = converter.ConverterOptions; /// A extension for [Delta] which comes from `flutter_quill` to extends /// the functionality of it to support converting the [Delta] to/from HTML @@ -19,7 +19,7 @@ extension DeltaHtmlExt on Delta { /// that designed specifically for converting the quill delta to html String toHtml({ConverterOptions? options}) { final json = toJson(); - final html = conventer.QuillDeltaToHtmlConverter( + final html = converter.QuillDeltaToHtmlConverter( List.castFrom(json), options, ).convert();