From 2da5d9a5fea76aa7a4f2e893b6d9b253174be35c Mon Sep 17 00:00:00 2001 From: Roland Levillain Date: Wed, 27 Feb 2019 16:56:41 +0000 Subject: [PATCH] Fix soong.android.RuleBuilderCommand.FlagWithList's comment. Test: n/a Change-Id: I96158244feaaaa25ada02275e20418ac30218004 --- android/rule_builder.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/rule_builder.go b/android/rule_builder.go index 5edd7b65b..ff43e2246 100644 --- a/android/rule_builder.go +++ b/android/rule_builder.go @@ -299,7 +299,7 @@ func (c *RuleBuilderCommand) FlagForEachArg(flag string, args []string) *RuleBui return c } -// FlagWithArg adds the specified flag and list of arguments to the command line, with the arguments joined by sep +// FlagWithList adds the specified flag and list of arguments to the command line, with the arguments joined by sep // and no separator between the flag and arguments. The flag and arguments should not contain input or output paths or // the rule will not have them listed in its dependencies or outputs. func (c *RuleBuilderCommand) FlagWithList(flag string, list []string, sep string) *RuleBuilderCommand {