Fix spec of meck:raise/2

There seems to be a typo in the spec; as it is the `Reason` can only
be the atom `term`.
diff --git a/src/meck.erl b/src/meck.erl
index 822ca61..9a3f835 100644
--- a/src/meck.erl
+++ b/src/meck.erl
@@ -649,7 +649,7 @@
 %% will raise the specified exception.
 -spec raise(Class, Reason) -> ret_spec() when
       Class :: throw | error | exit,
-      Reason :: term.
+      Reason :: term().
 raise(Class, Reason) -> meck_ret_spec:raise(Class, Reason).
 
 %% @doc Creates a {@link ret_spec()} that makes the original module function be