From b08233eafe2985a2890a47c52e431c63521ff381 Mon Sep 17 00:00:00 2001 From: Leandro Motta Barros Date: Thu, 29 Dec 2022 21:17:40 -0300 Subject: [PATCH] Fix typo: "written", not "writen" --- exercises/060_floats.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/060_floats.zig b/exercises/060_floats.zig index a223257..e13a216 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: +// may be written in scientific notation: // // const a1: f32 = 1200.0; // 1,200 // const a2: f32 = 1.2e+3; // 1,200