diff --git a/Control/Monad/Prompt.hs b/Control/Monad/Prompt.hs
--- a/Control/Monad/Prompt.hs
+++ b/Control/Monad/Prompt.hs
@@ -28,6 +28,8 @@
       runRecPromptM,
     PromptT,
       runPromptT,
+      runPromptTM,
+      runPromptTM',
       Lift(..),
       unPromptT,
       liftP,
@@ -237,7 +239,7 @@
             -> n r -- ^ resulting interpretation
 runPromptTM prm lft = runPromptT return (\p k -> prm p >>= k) (\l k -> lft l >>= k)
 
-{- | 'runPromptTM\'' specialises runPromptTM further for the case that you're interpreting to the base monad by supplying the identity function as the interpretation
+{- | 'runPromptTM'' specialises runPromptTM further for the case that you're interpreting to the base monad by supplying the identity function as the interpretation
      for lifted computations -}
 runPromptTM' :: forall p m r. (Monad m)
              => (forall a. p a -> m a) -- ^ interpretation for prompts
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-* Copyright (c) 2008, Ryan Ingram & Bertram Felgenhauer
+* Copyright (c) 2008, Ryan Ingram & Bertram Felgenhauer & Cale Gibbard
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
@@ -21,4 +21,4 @@
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/MonadPrompt.cabal b/MonadPrompt.cabal
--- a/MonadPrompt.cabal
+++ b/MonadPrompt.cabal
@@ -1,5 +1,5 @@
 name:                MonadPrompt
-version:             1.0.0.4
+version:             1.0.0.5
 cabal-version:       >= 1.2
 build-type:          Simple
 
