From 3d80f0834720fe43c6e42320cdc578c543b6e59e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Fr=C3=B6hle?= Date: Fri, 6 Jan 2023 16:32:03 +0100 Subject: [PATCH] Fix misleading-indentation --- examples/ReflowWizard/Learn.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/ReflowWizard/Learn.ino b/examples/ReflowWizard/Learn.ino index 5336000..1c0a2d1 100644 --- a/examples/ReflowWizard/Learn.ino +++ b/examples/ReflowWizard/Learn.ino @@ -269,9 +269,10 @@ userChangedMindAboutAborting: if (learningIntegral > 30) { learningIntegral = 0; // Increase duty cycles - if (learningDutyCycle < 100) + if (learningDutyCycle < 100) { learningDutyCycle++; SerialUSB.println("Under-temp. Increasing duty cycle"); + } } }