Linkify this
diff --git a/docs/fernet.rst b/docs/fernet.rst
index 68184b3..2fe2b86 100644
--- a/docs/fernet.rst
+++ b/docs/fernet.rst
@@ -41,7 +41,7 @@
                         without the key. It is URL-safe base64-encoded. This is
                         refered to as a "Fernet token".
 
-        .. warning::
+        .. note::
 
             The encrypted message contains the current time when it was
             generated in *plaintext*, the time a message was created will
@@ -58,11 +58,14 @@
                         provided (or is ``None``), the age of the message is
                         not considered.
         :returns bytes: The original plaintext.
-        :raises InvalidToken: If the ``token`` is in any way invalid, this
-                              exception is raised. A token may be invalid for a
-                              number of reasons: it is older than the ``ttl``,
-                              it is malformed, or it does not have a valid
-                              signature.
+        :raises cryptography.fernet.InvalidToken: If the ``token`` is in any
+                                                  way invalid, this exception
+                                                  is raised. A token may be
+                                                  invalid for a number of
+                                                  reasons: it is older than the
+                                                  ``ttl``, it is malformed, or
+                                                  it does not have a valid
+                                                  signature.
 
 
 .. class:: InvalidToken