cleanup a doctest and add a changelog entry for concatkdf
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index d29dad4..f521c11 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -20,6 +20,8 @@
   :class:`~cryptography.hazmat.primitives.twofactor.hotp.HOTP` and
   :class:`~cryptography.hazmat.primitives.twofactor.totp.TOTP` for generating
   provisioning URIs.
+* Add :class:`~cryptography.hazmat.primitives.kdf.concatkdf.ConcatKDFHash`
+  and :class:`~cryptography.hazmat.primitives.kdf.concatkdf.ConcatKDFHMAC`.
 
 0.9.1 - 2015-06-06
 ~~~~~~~~~~~~~~~~~~
diff --git a/docs/hazmat/primitives/key-derivation-functions.rst b/docs/hazmat/primitives/key-derivation-functions.rst
index 7def2a2..9fc8365 100644
--- a/docs/hazmat/primitives/key-derivation-functions.rst
+++ b/docs/hazmat/primitives/key-derivation-functions.rst
@@ -345,7 +345,6 @@
         >>> from cryptography.hazmat.primitives.kdf.concatkdf import ConcatKDFHash
         >>> from cryptography.hazmat.backends import default_backend
         >>> backend = default_backend()
-        >>> salt = os.urandom(16)
         >>> otherinfo = b"concatkdf-example"
         >>> ckdf = ConcatKDFHash(
         ...     algorithm=hashes.SHA256(),