Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 561809228
  • Loading branch information
rluble authored and copybara-github committed Sep 1, 2023
1 parent f769d80 commit 816ee30
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ final class BazelGwtIncompatibleStripper extends BazelWorker {
@Option(
name = "-annotation",
metaVar = "<annotation>",
usage = "The name of hte annoation to strip; defaults to 'GwtIncompatible'")
usage = "The name of hte annotation to strip; defaults to 'GwtIncompatible'")
String annotation = "GwtIncompatible";

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public final class GwtIncompatibleStripperCommandLineRunner extends CommandLineT
@Option(
name = "-annotation",
metaVar = "<annotation>",
usage = "The name of hte annoation to strip; defaults to 'GwtIncompatible'")
usage = "The name of hte annotation to strip; defaults to 'GwtIncompatible'")
String annotation = "GwtIncompatible";

private GwtIncompatibleStripperCommandLineRunner() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ package(

readable_example(
srcs = ["Main.java"],
deps = [":exports_my_simple_annoation_import"],
deps = [":exports_my_simple_annotation_import"],
)

j2cl_library(
name = "exports_my_simple_annoation_import",
exports = [":my_simple_annoation_import"],
name = "exports_my_simple_annotation_import",
exports = [":my_simple_annotation_import"],
)

j2cl_import(
name = "my_simple_annoation_import",
jar = ":my_simple_annoation",
name = "my_simple_annotation_import",
jar = ":my_simple_annotation",
)

java_library(
name = "my_simple_annoation",
name = "my_simple_annotation",
srcs = [
"MySimpleAnnotation.java",
],
Expand Down

0 comments on commit 816ee30

Please sign in to comment.