shithub: mc

Download patch

ref: 73c618bf4af5f96b4d1c0790662b6bd9e0a1f33e
parent: c3b5d8f485e8d981d12d7c59386f39125cb3a864
author: Ori Bernstein <ori@eigenstate.org>
date: Sun Sep 10 09:46:12 EDT 2017

Shuffle a comment.

--- a/lib/std/fltfmt.myr
+++ b/lib/std/fltfmt.myr
@@ -52,10 +52,10 @@
 	var k
 	var a, i
 
-	/* if we have zero for the mantissa, we can return early */
 	if isneg
 		sbputs(sb, "-")
 	;;
+	/* if we have zero for the mantissa, we can return early */
 	if f == 0
 		sbputs(sb, "0.0")
 		-> void