Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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