Skip to content

Commit 6a9318d

Browse files
committed
Use orelse instead of or
1 parent 9bac70a commit 6a9318d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aws_signature.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ sign_v4(AccessKeyID, SecretAccessKey, Region, Service, DateTime, Method, URL, He
119119
is_binary(Method),
120120
is_binary(URL),
121121
is_list(Headers),
122-
(is_binary(Body) or is_list(Body)),
122+
(is_binary(Body) orelse is_list(Body)),
123123
is_list(Options) ->
124124
URIEncodePath = proplists:get_value(uri_encode_path, Options, true),
125125

0 commit comments

Comments
 (0)