summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2014-05-16 13:10:55 +0200
committerLinus Nordberg <linus@nordu.net>2014-05-16 13:10:55 +0200
commit5b5ff7c0ae0acbcc02a3f49bb4b949b1444cc516 (patch)
treef43b0989c215808593a01bbed3f19410bcb51ef4 /src
parente7e1782673f6974b93f1225b80c49a8e6dda0219 (diff)
Fix typo in e7e1782.
Diffstat (limited to 'src')
-rw-r--r--src/plop.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plop.erl b/src/plop.erl
index 30df046..d62274a 100644
--- a/src/plop.erl
+++ b/src/plop.erl
@@ -405,8 +405,8 @@ serialise(#signature{
}) ->
SigLen = size(Signature),
[serialise(Algorithm),
- <<SigLen:16>>,
- Signature/binary].
+ <<SigLen:16,
+ Signature/binary>>].
%%%%%%%%%%%%%%%%%%%%
%% Tests.