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

Merge pull request 'fix: typo: % instead of @ for a builtin function' (#85) from d-hain/ziglings-exercises:094_c_math-typo-fix into main

Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/85
Chris Boesch 1 год назад
Родитель
Сommit
27db3112f9
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      exercises/094_c_math.zig

+ 1 - 1
exercises/094_c_math.zig

@@ -13,7 +13,7 @@
 // How could we do that? A good method is to use the modulo function.
 // But if we write "765.2 % 360", it only works with float values
 // that are known at compile time.
-// In Zig, we would use %mod(a, b) instead.
+// In Zig, we would use @mod(a, b) instead.
 //
 // Let us now assume that we cannot do this in Zig, but only with
 // a C function from the standard library. In the library "math",