Fix miniscule typo in comment in ClassAndMemberPublicizer

Change-Id: Ifae2a5e16b72be54f415c0d11230d48817b6f8f9
diff --git a/src/main/java/com/android/tools/r8/optimize/ClassAndMemberPublicizer.java b/src/main/java/com/android/tools/r8/optimize/ClassAndMemberPublicizer.java
index 4816759..a52d044 100644
--- a/src/main/java/com/android/tools/r8/optimize/ClassAndMemberPublicizer.java
+++ b/src/main/java/com/android/tools/r8/optimize/ClassAndMemberPublicizer.java
@@ -147,7 +147,7 @@
       return true;
     }
 
-    // For private static methods we can just relax the access to private, since
+    // For private static methods we can just relax the access to public, since
     // even though JLS prevents from declaring static method in derived class if
     // an instance method with same signature exists in superclass, JVM actually
     // does not take into account access of the static methods.