Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
Whitespace fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
archaelus committed May 20, 2013
1 parent 5b223e7 commit 15bb70f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/logplex_api.erl
Expand Up @@ -126,7 +126,8 @@ handlers() ->
Tokens =
case proplists:get_value(<<"tokens">>, Params) of
List when length(List) > 0 ->
[{TokenName, logplex_token:create(ChannelId, TokenName)} || TokenName <- List];
[{TokenName, logplex_token:create(ChannelId, TokenName)}
|| TokenName <- List];
_ ->
[]
end,
Expand Down
6 changes: 3 additions & 3 deletions src/logplex_token.erl
@@ -1,5 +1,5 @@
%% Copyright (c) 2010 Jacob Vorreuter <jacob.vorreuter@gmail.com>
%%
%%
%% Permission is hereby granted, free of charge, to any person
%% obtaining a copy of this software and associated documentation
%% files (the "Software"), to deal in the Software without
Expand All @@ -8,10 +8,10 @@
%% copies of the Software, and to permit persons to whom the
%% Software is furnished to do so, subject to the following
%% conditions:
%%
%%
%% The above copyright notice and this permission notice shall be
%% included in all copies or substantial portions of the Software.
%%
%%
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
%% EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
%% OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Expand Down

0 comments on commit 15bb70f

Please sign in to comment.