From 56b84e7786d13ae89a35dc104ec1c24770caee49 Mon Sep 17 00:00:00 2001 From: Usta Shrestha Date: Sat, 24 Sep 2022 00:26:47 -0400 Subject: [PATCH] typo in comment Bug: N/A Test: N/A Change-Id: Ibfcaf4deba2181d48a6428d05f715fac447d74c6 --- android/module.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/module.go b/android/module.go index 16172591b..d5d4bff0b 100644 --- a/android/module.go +++ b/android/module.go @@ -1519,7 +1519,7 @@ func (m *ModuleBase) GetUnconvertedBp2buildDeps() []string { return FirstUniqueStrings(m.commonProperties.BazelConversionStatus.UnconvertedDeps) } -// GetMissingBp2buildDeps eturns the list of module names that were not found in Android.bp files. +// GetMissingBp2buildDeps returns the list of module names that were not found in Android.bp files. func (m *ModuleBase) GetMissingBp2buildDeps() []string { return FirstUniqueStrings(m.commonProperties.BazelConversionStatus.MissingDeps) }