Skip to content

Commit

Permalink
Reformatted the file
Browse files Browse the repository at this point in the history
  • Loading branch information
mitryp committed May 29, 2023
1 parent 2d06fb9 commit 619a925
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@ class DebounceLangToolService extends LanguageCheckService {
required bool isPicky,
}) async {
final value = await debouncing.debounce(() {
return baseService.findMistakes(text,
checkLanguage: checkLanguage, isPicky: isPicky,);
return baseService.findMistakes(
text,
checkLanguage: checkLanguage,
isPicky: isPicky,
);
}) as List<Mistake>?;

return value ?? [];
Expand Down

0 comments on commit 619a925

Please sign in to comment.