summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2016-01-19 17:22:34 +0100
committerLinus Nordberg <linus@nordu.net>2016-08-18 14:46:39 +0200
commitdf7057d61636d826f44cee4052e45d7eda7b3692 (patch)
treeb8b15e63f22bce856b210c233bbfd5b36e91a41c
parent85f4c44d69c1a5a9ec71c64c9b0a6f92bfefb7e4 (diff)
Don't use 'tuple()'.
-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 |