From b0be83ffd8cb962a75c8a605befc5df9334c4fd1 Mon Sep 17 00:00:00 2001 From: Hiroyuki ANAI Date: Wed, 1 Apr 2020 15:22:13 +0900 Subject: [PATCH] Fix typo in the usage of --skipEmitRegExp inserted a space between "that" and "the" --- src/main/java/com/google/javascript/clutz/Options.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/google/javascript/clutz/Options.java b/src/main/java/com/google/javascript/clutz/Options.java index f476e28a..9d7c0297 100644 --- a/src/main/java/com/google/javascript/clutz/Options.java +++ b/src/main/java/com/google/javascript/clutz/Options.java @@ -137,7 +137,7 @@ public int parseArguments(Parameters params) throws CmdLineException { name = "--skipEmitRegExp", usage = "Symbols in files that match this RegExp will not be included in the emit. Note that" - + "the files would still be part of the internal compilation." + + " the files would still be part of the internal compilation." ) String skipEmitRegExp = null;