From c9c4ee1bf227367ead272e79adda7d265aaaba35 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 30 Apr 2019 02:59:02 +0100 Subject: [PATCH] add comment --- src/add/fsqrt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add/fsqrt.py b/src/add/fsqrt.py index a87af61d..e0696ebc 100644 --- a/src/add/fsqrt.py +++ b/src/add/fsqrt.py @@ -22,7 +22,7 @@ def sqrtsimple(num): def sqrt(num): D = num # D is input (from num) - Q = 0 + Q = 0 # quotient R = 0 # remainder for i in range(64, -1, -1): # negative ranges are weird... -- 2.30.2