Skip to content

Commit cece4a5

Browse files
authored
Fix typo in flutter.gradle (#114143)
1 parent d93208a commit cece4a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/flutter_tools/gradle/flutter.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ class FlutterPlugin implements Plugin<Project> {
581581
return []
582582
}
583583

584-
private static String toCammelCase(List<String> parts) {
584+
private static String toCamelCase(List<String> parts) {
585585
if (parts.empty) {
586586
return ""
587587
}
@@ -884,7 +884,7 @@ class FlutterPlugin implements Plugin<Project> {
884884
}
885885
}
886886
String variantBuildMode = buildModeFor(variant.buildType)
887-
String taskName = toCammelCase(["compile", FLUTTER_BUILD_PREFIX, variant.name])
887+
String taskName = toCamelCase(["compile", FLUTTER_BUILD_PREFIX, variant.name])
888888
FlutterTask compileTask = project.tasks.create(name: taskName, type: FlutterTask) {
889889
flutterRoot this.flutterRoot
890890
flutterExecutable this.flutterExecutable

0 commit comments

Comments
 (0)