diff options
author | Yuki Ito <[email protected]> | 2016-05-07 15:46:57 +0900 |
---|---|---|
committer | Yuki Ito <[email protected]> | 2016-05-07 15:47:35 +0900 |
commit | a8d755f1fb6159dbd05c42e08b0fc87cf8a96663 (patch) | |
tree | c19eca230ff7617c877c63b0cdd37fd6f3c395ff /lib/stdlib/src | |
parent | 6a1290f534164d1a5771dba37c23124652b9f7c9 (diff) | |
download | otp-a8d755f1fb6159dbd05c42e08b0fc87cf8a96663.tar.gz otp-a8d755f1fb6159dbd05c42e08b0fc87cf8a96663.tar.bz2 otp-a8d755f1fb6159dbd05c42e08b0fc87cf8a96663.zip |
Fix deprecated warnings
In current deprecated warnings such as `crypto:rand_bytes/1 is deprecated
and will be removed in in a future release; use crypto:strong_rand_bytes/1`,
the word "in" is duplicated.
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/otp_internal.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/otp_internal.erl b/lib/stdlib/src/otp_internal.erl index 7a59523f06..c3ad261daa 100644 --- a/lib/stdlib/src/otp_internal.erl +++ b/lib/stdlib/src/otp_internal.erl @@ -35,7 +35,7 @@ obsolete(Module, Name, Arity) -> case obsolete_1(Module, Name, Arity) of {deprecated=Tag,{_,_,_}=Replacement} -> - {Tag,Replacement,"in a future release"}; + {Tag,Replacement,"a future release"}; {_,String}=Ret when is_list(String) -> Ret; {_,_,_}=Ret -> |