From 5840b4d36f8a92be614b681635d7bcfaf8513ee5 Mon Sep 17 00:00:00 2001 From: ghm Date: Fri, 22 Mar 2024 07:49:53 -0700 Subject: [PATCH] Fix a typo in `SuggestedFix.checkNotSyntheticConstructor` PiperOrigin-RevId: 618176103 --- .../src/main/java/com/google/errorprone/fixes/SuggestedFix.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_api/src/main/java/com/google/errorprone/fixes/SuggestedFix.java b/check_api/src/main/java/com/google/errorprone/fixes/SuggestedFix.java index 94af5eedaeb..8f05c9b2392 100644 --- a/check_api/src/main/java/com/google/errorprone/fixes/SuggestedFix.java +++ b/check_api/src/main/java/com/google/errorprone/fixes/SuggestedFix.java @@ -363,7 +363,7 @@ public Builder merge(@Nullable SuggestedFix other) { } /** - * Prevent attempts to modify implicit default constructurs, since they are one of the few + * Prevent attempts to modify implicit default constructors, since they are one of the few * synthetic constructs added to the AST early enough to be visible from Error Prone. */ private static void checkNotSyntheticConstructor(Tree tree) {