From eec24b3545f99c8f28b055074bde71b4c43c014f Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Sun, 5 Jul 2020 19:36:48 -0400 Subject: [PATCH] fix cpplint error --- graphics/spirograph.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/graphics/spirograph.cpp b/graphics/spirograph.cpp index 1aaf73378..adaad6d7b 100644 --- a/graphics/spirograph.cpp +++ b/graphics/spirograph.cpp @@ -197,8 +197,9 @@ void test2() { else l -= step; } - } else // no min limit of k + } else { // no min limit of k k -= step; + } } }