Skip to content

Commit f34b6a2

Browse files
Further styling.
1 parent ea1ad42 commit f34b6a2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/prometheus/compiler/expressions/if_else.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- This Script is Part of the Prometheus Obfuscator by Levno_710
1+
-- This Script is Part of the Prometheus Obfuscator by levno-710
22
--
33
-- if_else.lua
44
--

src/prometheus/unparser.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ function Unparser:unparseExpression(expression, tabbing)
684684
if (self.luaVersion == LuaVersion.LuaU) then
685685
k = AstKind.IfElseExpression
686686
if(expression.kind == k) then
687-
push(" if ");
687+
push("if ");
688688
push(self:unparseExpression(expression.condition));
689689
push(" then ");
690690
push(self:unparseExpression(expression.true_value));

0 commit comments

Comments
 (0)