Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 265543c

Browse files
committed
Formatting
1 parent f37a868 commit 265543c

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

shell/platform/darwin/ios/framework/Source/FlutterSpellCheckPlugin.mm

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,8 @@ - (instancetype)initWithMisspelledRange:(NSRange)range
147147
- (NSDictionary<NSString*, NSObject*>*)toDictionary {
148148
NSMutableDictionary* result = [[[NSMutableDictionary alloc] initWithCapacity:3] autorelease];
149149
result[@"startIndex"] = @(_misspelledRange.location);
150-
// The end index represents the next index after the last character of a misspelled word to match the
151-
// behavior of Dart's TextRange:
152-
// https://api.flutter.dev/flutter/dart-ui/TextRange/end.html
150+
// The end index represents the next index after the last character of a misspelled word to match
151+
// the behavior of Dart's TextRange: https://api.flutter.dev/flutter/dart-ui/TextRange/end.html
153152
result[@"endIndex"] = @(_misspelledRange.location + _misspelledRange.length);
154153
result[@"suggestions"] = _suggestions;
155154
return result;

0 commit comments

Comments
 (0)