From 37e1d1543384fd8755e8cf51a186edbfada5e9f8 Mon Sep 17 00:00:00 2001 From: Matt Liberty Date: Tue, 30 Sep 2025 01:23:59 +0000 Subject: [PATCH] fix stray character typo (#302) Signed-off-by: Matt Liberty --- power/Power.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/power/Power.tcl b/power/Power.tcl index d38d4cbb..420a97a9 100644 --- a/power/Power.tcl +++ b/power/Power.tcl @@ -273,7 +273,7 @@ proc set_power_activity { args } { if { [info exists keys(-duty)] } { set duty $keys(-duty) check_float "duty" $duty - if { $duty < 0.0 || $duty > 1.0 } {i + if { $duty < 0.0 || $duty > 1.0 } { sta_error 309 "duty should be 0.0 to 1.0" } }