aboutsummaryrefslogtreecommitdiff
path: root/exercises/060_floats.zig
diff options
context:
space:
mode:
authorJonathan Halmen <jonathan@halmen.org>2021-11-05 16:44:29 +0100
committerJonathan Halmen <jonathan@halmen.org>2021-11-05 17:46:56 +0100
commit88886a37d9721763326ff80a7b2c127e4a8cb8ae (patch)
tree3e6ea609c66930457907903329cdd947edafbb78 /exercises/060_floats.zig
parent4147a9a39b362468cc6f16c8ce751ee3481321f4 (diff)
downloadziglings-88886a37d9721763326ff80a7b2c127e4a8cb8ae.tar.gz
ziglings-88886a37d9721763326ff80a7b2c127e4a8cb8ae.tar.bz2
ziglings-88886a37d9721763326ff80a7b2c127e4a8cb8ae.tar.xz
ziglings-88886a37d9721763326ff80a7b2c127e4a8cb8ae.zip
fix whitespace line-endings
Diffstat (limited to 'exercises/060_floats.zig')
-rw-r--r--exercises/060_floats.zig4
1 files changed, 2 insertions, 2 deletions
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.