diff options
author | Hans Nilsson <[email protected]> | 2018-09-07 13:46:52 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2018-09-13 12:07:52 +0200 |
commit | 882fa794883e6dbc0e56f22645cd3aec21920c53 (patch) | |
tree | fb4a26b8b84bd1553a37c9c7597bf3e4bf26a516 /lib/crypto/src | |
parent | cb654518a4fa58fa65f46e1386ff91c6375f6f5a (diff) | |
download | otp-882fa794883e6dbc0e56f22645cd3aec21920c53.tar.gz otp-882fa794883e6dbc0e56f22645cd3aec21920c53.tar.bz2 otp-882fa794883e6dbc0e56f22645cd3aec21920c53.zip |
crypto: Add missing documentation for enable_fips_mode/1
Diffstat (limited to 'lib/crypto/src')
-rw-r--r-- | lib/crypto/src/crypto.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/crypto/src/crypto.erl b/lib/crypto/src/crypto.erl index a841f0f168..c64586897e 100644 --- a/lib/crypto/src/crypto.erl +++ b/lib/crypto/src/crypto.erl @@ -346,8 +346,8 @@ info_lib() -> ?nif_stub. info_fips() -> ?nif_stub. --spec enable_fips_mode(boolean()) -> boolean(). - +-spec enable_fips_mode(Enable) -> Result when Enable :: boolean(), + Result :: boolean(). enable_fips_mode(_) -> ?nif_stub. %%%================================================================ |