Make README example fuzz targets public
diff --git a/README.md b/README.md
index bfc0ede..f03e297 100644
--- a/README.md
+++ b/README.md
@@ -138,7 +138,7 @@
 ```java
 package com.example.MyFirstFuzzTarget;
 
-class MyFirstFuzzTarget {
+public class MyFirstFuzzTarget {
     public static void fuzzerTestOneInput(byte[] input) {
         ...
         // Call the function under test with arguments derived from input and
@@ -198,7 +198,7 @@
 
 import com.code_intelligence.jazzer.api.FuzzedDataProvider;
 
-class MySecondFuzzTarget {
+public class MySecondFuzzTarget {
     public satic void callApi(int val, String text) {
         ...
     }