aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--exercises/060_floats.zig4
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 2f946de..5dd88e4 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ Verify the installation and build number of `zig` like so:
```bash
$ zig version
-0.10.0-dev.3978+xxxxxxxxx
+0.11.0-dev.1302+xxxxxxxxx
```
Clone this repository with Git:
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