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

Merge pull request #52 from andrejp88/main

Fix typo in 074 comptime 9
Dave Gauer 4 лет назад
Родитель
Сommit
cc87c8e82d
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      exercises/074_comptime9.zig

+ 3 - 3
exercises/074_comptime9.zig

@@ -5,7 +5,7 @@
 // The following contexts are already IMPLICITLY evaluated at
 // compile time, and adding the 'comptime' keyword would be
 // superfluous, redundant, and smelly:
-// 
+//
 //    * The global scope (outside of any function in a source file)
 //    * Type declarations of:
 //        * Variables
@@ -16,8 +16,8 @@
 //    * The test expressions in inline for and while loops
 //    * An expression passed to the @cImport() builtin
 //
-// Work with Zig for a while, and you'll start to develop and
-// intuition for these contexts. Let's work on that/ now.
+// Work with Zig for a while, and you'll start to develop an
+// intuition for these contexts. Let's work on that now.
 //
 // You have been given just one 'comptime' statement to use in
 // the program below. Here it is: