summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-01-14 13:41:15 +0100
committerGitHub <noreply@github.com>2023-01-14 13:41:15 +0100
commit46d233b97c655d1bdbacc1b53b6e371e055c9cda (patch)
tree6efe10e0ffc436da64a010da3523e278b4c44372
parenta165c9425537a607d578e25aacdaf02366a106ac (diff)
parent9d3b2b822f61db955eae4bb2fb8e6d6201c9f5b2 (diff)
Merge pull request #143 from kimshrier/exercise_060_f80
Exercise 60: mention new float type f80 @kimshrier Thank you!
-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 e13a216..237e9c6 100644
--- a/exercises/060_floats.zig
+++ b/exercises/060_floats.zig
@@ -1,7 +1,7 @@
//
// Zig has support for IEEE-754 floating-point numbers in these
-// specific sizes: f16, f32, f64, f128. Floating point literals
-// may be written in scientific notation:
+// specific sizes: f16, f32, f64, f80, and f128. Floating point
+// literals may be writen in scientific notation:
//
// const a1: f32 = 1200.0; // 1,200
// const a2: f32 = 1.2e+3; // 1,200