Skip to content

Commit c472e40

Browse files
authored
Correcting the typo of Flutter in projects (#6850)
In part of the documentation, Flutter is spelled out with a typo. I fixed it using a repository search. - [] The title of the PR starts with the name of the package surrounded by square brackets, e.g. `[shared_preferences]`
1 parent dcd8586 commit c472e40

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/camera/camera_android_camerax/lib/src/android_camera_camerax_flutter_api_impls.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ class AndroidCameraXCameraFlutterApis {
182182
late final FocusMeteringResultFlutterApiImpl
183183
focusMeteringResultFlutterApiImpl;
184184

185-
/// Fluter Api implementation for [Camera2CameraInfo].
185+
/// Flutter Api implementation for [Camera2CameraInfo].
186186
late final Camera2CameraInfoFlutterApiImpl camera2CameraInfoFlutterApiImpl;
187187

188188
/// Ensures all the Flutter APIs have been setup to receive calls from native code.

script/tool/lib/src/create_all_packages_app_command.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ dev_dependencies:${_pubspecMapString(pubspec.devDependencies)}
429429
_adjustFile(
430430
pbxprojFile,
431431
replacements: <String, List<String>>{
432-
// iOS 14 is required by google_maps_fluter.
432+
// iOS 14 is required by google_maps_flutter.
433433
'IPHONEOS_DEPLOYMENT_TARGET': <String>[
434434
' IPHONEOS_DEPLOYMENT_TARGET = 14.0;'
435435
],

script/tool/lib/src/pubspec_check_command.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ class PubspecCheckCommand extends PackageLoopingCommand {
473473
Version? minMinFlutterVersion,
474474
}) {
475475
String unknownDartVersionError(Version flutterVersion) {
476-
return 'Dart SDK version for Fluter SDK version '
476+
return 'Dart SDK version for Flutter SDK version '
477477
'$flutterVersion is unknown. '
478478
'Please update the map for getDartSdkForFlutterSdk with the '
479479
'corresponding Dart version.';

script/tool/lib/src/update_min_sdk_command.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class UpdateMinSdkCommand extends PackageLoopingCommand {
4545
_flutterMinVersion = Version.parse(getStringArg(_flutterMinFlag));
4646
final Version? dartMinVersion = getDartSdkForFlutterSdk(_flutterMinVersion);
4747
if (dartMinVersion == null) {
48-
printError('Dart SDK version for Fluter SDK version '
48+
printError('Dart SDK version for Flutter SDK version '
4949
'$_flutterMinVersion is unknown. '
5050
'Please update the map for getDartSdkForFlutterSdk with the '
5151
'corresponding Dart version.');

script/tool/test/pubspec_check_command_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1518,7 +1518,7 @@ ${_topicsSection()}
15181518
expect(
15191519
output,
15201520
containsAllInOrder(<Matcher>[
1521-
contains('Dart SDK version for Fluter SDK version 2.0.0 is unknown'),
1521+
contains('Dart SDK version for Flutter SDK version 2.0.0 is unknown'),
15221522
]),
15231523
);
15241524
});

0 commit comments

Comments
 (0)