Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit c70f37d

Browse files
committed
Clearer Boolean logic
1 parent 71eaad3 commit c70f37d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ElixirWeb.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,6 @@ end;
187187
function CheckToInstallErlang: Boolean; begin
188188
Result := (GetLatestErlangPath = ''); end;
189189
function CheckToAddExistingErlangPath: Boolean; begin
190-
Result := (not CheckToInstallErlang) and (not ErlangInPath); end;
190+
Result := not (CheckToInstallErlang or ErlangInPath); end;
191191
192192
{#StrInspectAllFuncs}

0 commit comments

Comments
 (0)