From f2a4209f6d6b39e148e3e47aa3237ae02c8cadb8 Mon Sep 17 00:00:00 2001 From: Kim SHrier Date: Mon, 7 Nov 2022 00:28:40 -0700 Subject: Exercise 60: mention new float type f80 --- 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 a223257..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 writen 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 -- cgit v1.2.3-70-g09d2 From d59c3e95983a83c65b549bf41500206681233ee3 Mon Sep 17 00:00:00 2001 From: Roman FroĊ‚ow Date: Tue, 17 Jan 2023 23:24:32 +0100 Subject: writen -> written --- exercises/060_floats.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises/060_floats.zig') diff --git a/exercises/060_floats.zig b/exercises/060_floats.zig index 237e9c6..8ba51db 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, f80, and f128. Floating point -// literals may be writen in scientific notation: +// literals may be written in scientific notation: // // const a1: f32 = 1200.0; // 1,200 // const a2: f32 = 1.2e+3; // 1,200 -- cgit v1.2.3-70-g09d2