From 5a3e818fa3345a9f17419cb3a0360017a6c78eca Mon Sep 17 00:00:00 2001 From: solid-danylokhvan Date: Tue, 4 Jul 2023 20:18:30 +0300 Subject: [PATCH] code formatting --- lib/implementations/debounce_lang_tool_service.dart | 1 - lib/utils/closed_range.dart | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/implementations/debounce_lang_tool_service.dart b/lib/implementations/debounce_lang_tool_service.dart index 3595a07..8c04f69 100644 --- a/lib/implementations/debounce_lang_tool_service.dart +++ b/lib/implementations/debounce_lang_tool_service.dart @@ -5,7 +5,6 @@ import 'package:throttling/throttling.dart'; /// A language check service with debouncing. class DebounceLangToolService extends LanguageCheckService { - /// A base language check service. final LanguageCheckService baseService; diff --git a/lib/utils/closed_range.dart b/lib/utils/closed_range.dart index 0420c62..1405e7b 100644 --- a/lib/utils/closed_range.dart +++ b/lib/utils/closed_range.dart @@ -1,6 +1,6 @@ import 'dart:math'; -/// The [ClosedRange] class represents a closed range of integers, defined +/// The [ClosedRange] class represents a closed range of integers, defined /// by a starting point and an ending point. /// The start and end properties represent the bounds of the range. class ClosedRange {