diff --git a/port-utils.cabal b/port-utils.cabal
--- a/port-utils.cabal
+++ b/port-utils.cabal
@@ -5,7 +5,7 @@
 -- hash: 3c9f6539125be2f2bac678ef2ea3de3bd1142a989e69ca6921dccbaade661e6f
 
 name:           port-utils
-version:        0.1.0.1
+version:        0.1.0.2
 synopsis:       Utilities for creating and waiting on ports
 description:    Utilities for creating and waiting on ports.
   .
diff --git a/src/Network/Socket/Free.hs b/src/Network/Socket/Free.hs
--- a/src/Network/Socket/Free.hs
+++ b/src/Network/Socket/Free.hs
@@ -6,6 +6,8 @@
 
 -- | Open a TCP socket on a random free port. This is like 'warp''s
 --   openFreePort.
+--
+--   Since 0.0.0.1
 openFreePort :: IO (Int, N.Socket)
 openFreePort =
   E.bracketOnError (N.socket N.AF_INET N.Stream N.defaultProtocol) N.close
diff --git a/src/Network/Socket/Wait.hs b/src/Network/Socket/Wait.hs
--- a/src/Network/Socket/Wait.hs
+++ b/src/Network/Socket/Wait.hs
@@ -14,7 +14,7 @@
 -- Simple Api
 -------------------------------------------------------------------------------
 
--- | 'wait' will retry to connect to the given host and port repeated every
+-- | 'wait' will attempt to connect to the given host and port repeated every
 -- 10 milliseconds until it is successful. It will throw an 'IOError' if the
 -- host cannot be resolved.
 --
diff --git a/test/Spec.hs b/test/Spec.hs
--- a/test/Spec.hs
+++ b/test/Spec.hs
