Skip to content

Commit

Permalink
Correcting the typo of Flutter in projects (flutter#6850)
Browse files Browse the repository at this point in the history
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]`
  • Loading branch information
meg4cyberc4t authored and arc-yong committed Jun 14, 2024
1 parent 9882d36 commit 616b57a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class AndroidCameraXCameraFlutterApis {
late final FocusMeteringResultFlutterApiImpl
focusMeteringResultFlutterApiImpl;

/// Fluter Api implementation for [Camera2CameraInfo].
/// Flutter Api implementation for [Camera2CameraInfo].
late final Camera2CameraInfoFlutterApiImpl camera2CameraInfoFlutterApiImpl;

/// Ensures all the Flutter APIs have been setup to receive calls from native code.
Expand Down
2 changes: 1 addition & 1 deletion script/tool/lib/src/create_all_packages_app_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ dev_dependencies:${_pubspecMapString(pubspec.devDependencies)}
_adjustFile(
pbxprojFile,
replacements: <String, List<String>>{
// iOS 14 is required by google_maps_fluter.
// iOS 14 is required by google_maps_flutter.
'IPHONEOS_DEPLOYMENT_TARGET': <String>[
' IPHONEOS_DEPLOYMENT_TARGET = 14.0;'
],
Expand Down
2 changes: 1 addition & 1 deletion script/tool/lib/src/pubspec_check_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ class PubspecCheckCommand extends PackageLoopingCommand {
Version? minMinFlutterVersion,
}) {
String unknownDartVersionError(Version flutterVersion) {
return 'Dart SDK version for Fluter SDK version '
return 'Dart SDK version for Flutter SDK version '
'$flutterVersion is unknown. '
'Please update the map for getDartSdkForFlutterSdk with the '
'corresponding Dart version.';
Expand Down
2 changes: 1 addition & 1 deletion script/tool/lib/src/update_min_sdk_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class UpdateMinSdkCommand extends PackageLoopingCommand {
_flutterMinVersion = Version.parse(getStringArg(_flutterMinFlag));
final Version? dartMinVersion = getDartSdkForFlutterSdk(_flutterMinVersion);
if (dartMinVersion == null) {
printError('Dart SDK version for Fluter SDK version '
printError('Dart SDK version for Flutter SDK version '
'$_flutterMinVersion is unknown. '
'Please update the map for getDartSdkForFlutterSdk with the '
'corresponding Dart version.');
Expand Down
2 changes: 1 addition & 1 deletion script/tool/test/pubspec_check_command_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1518,7 +1518,7 @@ ${_topicsSection()}
expect(
output,
containsAllInOrder(<Matcher>[
contains('Dart SDK version for Fluter SDK version 2.0.0 is unknown'),
contains('Dart SDK version for Flutter SDK version 2.0.0 is unknown'),
]),
);
});
Expand Down

0 comments on commit 616b57a

Please sign in to comment.