Просмотр исходного кода

Merge pull request #148 from lmbarros/patch-1

Fix typo: "written", not "writen"
Chris Boesch 2 лет назад
Родитель
Сommit
7d3ea585f5
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      exercises/060_floats.zig

+ 1 - 1
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