From ae01d815fedb5879c8ee5cbf6680ad050e298448 Mon Sep 17 00:00:00 2001 From: KyleWong Date: Tue, 28 May 2019 14:41:45 +0800 Subject: [PATCH] Better help message. --- tools/gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/gn b/tools/gn index ebf8be7bff424..431f0cf2c6835 100755 --- a/tools/gn +++ b/tools/gn @@ -264,7 +264,7 @@ def parse_args(args): parser.add_argument('--dynamic', default=False, action='store_true') parser.add_argument('--interpreter', default=False, action='store_true') parser.add_argument('--dart-debug', default=False, action='store_true', help='Enables assertsion in the Dart VM. ' + - 'Does not affect affect optimization levels. If you need to disable optimizations in Dart, use --full-dart-debug') + 'Does not affect optimization levels. If you need to disable optimizations in Dart, use --full-dart-debug') parser.add_argument('--full-dart-debug', default=False, action='store_true', help='Implies --dart-debug ' + 'and also disables optimizations in the Dart VM making it easier to step through VM code in the debugger.')