diff --git a/inline-java.cabal b/inline-java.cabal
--- a/inline-java.cabal
+++ b/inline-java.cabal
@@ -1,5 +1,5 @@
 name:                inline-java
-version:             0.6.4
+version:             0.6.5
 synopsis:            Java interop via inline Java code in Haskell modules.
 description:         Please see README.md.
 homepage:            http://github.com/tweag/inline-java#readme
diff --git a/src/Language/Java/Inline.hs b/src/Language/Java/Inline.hs
--- a/src/Language/Java/Inline.hs
+++ b/src/Language/Java/Inline.hs
@@ -47,6 +47,7 @@
 
 module Language.Java.Inline
   ( java
+  , loadJavaWrappers
   ) where
 
 import Control.Monad (forM_, unless)
@@ -296,7 +297,7 @@
         ]
 
 -- | Idempotent action that loads all wrappers in every module of the current
--- program into the JVM.
+-- program into the JVM. You shouldn't need to call this yourself.
 loadJavaWrappers :: IO ()
 loadJavaWrappers = doit `seq` return ()
   where
