From 88886a37d9721763326ff80a7b2c127e4a8cb8ae Mon Sep 17 00:00:00 2001 From: Jonathan Halmen Date: Fri, 5 Nov 2021 16:44:29 +0100 Subject: fix whitespace line-endings --- exercises/060_floats.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'exercises/060_floats.zig') diff --git a/exercises/060_floats.zig b/exercises/060_floats.zig index 6ff7b50..a223257 100644 --- a/exercises/060_floats.zig +++ b/exercises/060_floats.zig @@ -59,7 +59,7 @@ pub fn main() void { // | exponent significand // | // sign -// +// // This example is the decimal number 3.140625, which happens to // be the closest representation of Pi we can make with an f16 // due to the way IEEE-754 floating points store digits: @@ -86,6 +86,6 @@ pub fn main() void { // // Fun fact: sometimes you'll see the significand labeled as a // "mantissa" but Donald E. Knuth says not to do that. -// +// // C compatibility fact: There is also a Zig floating point type // specifically for working with C ABIs called c_longdouble. -- cgit v1.2.3-ZIG