summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2016-01-19 17:22:34 +0100
committerLinus Nordberg <linus@nordu.net>2016-01-19 17:22:34 +0100
commitca2c0759b364db8edca5c1a14f520a33da3cf230 (patch)
treef2fbd7cf7bb9a3fb4f7d96d315106a481844dcd5
parentb0371b26d2b4d314b427c55296c96323cacc7a81 (diff)
Don't use 'tuple()'.CATLFISH-69
-rw-r--r--src/plop.hrl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plop.hrl b/src/plop.hrl
index 2e0d436..e388b6f 100644
--- a/src/plop.hrl
+++ b/src/plop.hrl
@@ -7,7 +7,7 @@
%% Signed tree head
%% {Treesize, Timestamp, Roothash, Signature}
--type sth() :: tuple(integer(), integer(), binary(), signature()).
+-type sth() :: {integer(), integer(), binary(), signature()}.
%% RFC 5246 7.4.1.4.1
-type hash_alg_type() :: none | md5 | sha1 | sha224 | sha256 | sha384 |