Skip to content

Commit

Permalink
chore(docs): minor changes to update doc comment in QuillController
Browse files Browse the repository at this point in the history
  • Loading branch information
EchoEllet committed Oct 1, 2024
1 parent 9f9faeb commit cbe6492
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/controller/quill_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ class QuillController extends ChangeNotifier {
}

/// Returns whether paste operation was handled here.
/// updateEditor is called if paste operation was successful.
/// [updateEditor] is called if paste operation was successful.
Future<bool> clipboardPaste({void Function()? updateEditor}) async {
if (readOnly || !selection.isValid) return true;

Expand Down Expand Up @@ -612,7 +612,7 @@ class QuillController extends ChangeNotifier {
return false;
}

/// Return true if can paste internal image
/// Return `true` if can paste internal image
Future<bool> _pasteInternalImage() async {
final copiedImageUrl = _copiedImageUrl;
if (copiedImageUrl != null) {
Expand Down

0 comments on commit cbe6492

Please sign in to comment.